/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v25-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/montserrat-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/montserrat-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/montserrat-v25-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/montserrat-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/montserrat-v25-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}

body {
    padding: 0;
    margin: 0;
    font-family: Montserrat, sans-serif;
}

a {
    text-decoration: none;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 120px;
}

header .logo img {
    width: auto;
    height: auto;
    max-height: 84px;
}

header .nav a {
    background: #326774;
    padding: 10px 30px;
    border-radius: 5px;
    color: white;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    background-color: #18444C;
    text-align: center;
}

.file .preview {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 360px;
    width: 360px;
    border: 1px solid #9DB3BA;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #9DB3BA;
}

.file .shared-by {
    margin-bottom: 20px;
    color: #9DB3BA;
}

.file #download a {
    display: block;
    background: #EFA25D;
    padding: 20px 60px;
    border-radius: 5px;
    color: white;
    margin-bottom: 20px;
}

.notice {
    max-width: 1000px;
    padding: 5px 30px;
    border: 1px solid #EFA25D;
    border-radius: 10px;
    color: #EFA25D;
}

footer img {
    width: auto;
    height: auto;
    max-height: 90px;
}

footer .main-footer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 10%;
}

footer .second-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    margin: 50px 10%;
}

footer .sub-footer {
    display: flex;
    justify-content: center;
    background-color: #18444C;
    padding: 20px;
}

.sub-footer a {
    color: #efa25d;
}

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 750px) {
    .file .preview {
        width: 250px;
        height: 250px;
    }

    .notice {
        margin: 0 5%;
    }

    footer img {
        max-width: 300px;
    }

    footer .main-footer {
        margin: 50px 5%;
    }

    footer .second-footer {
        margin: 50px 5%;
    }
}