@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/jetbrains-mono/JetBrainsMono-Bold.ttf')
        format('truetype');
}

/*using instead of MD Nichrome Trial*/
@font-face {
    font-family: 'Tilt Warp';
    src: url('../fonts/tilt-wrap/TiltWarp-Regular.ttf') format('truetype');
}

/*using instead of f37 Bolton */
@font-face {
    font-family: 'Schibsted Grotesk';
    src: url('../fonts/schibsted-grotesk/SchibstedGrotesk-Regular.ttf')
        format('truetype');
}

h1,
h2,
h3 {
    font-family: 'Tilt Warp', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    color: #2a2d2d;
    font-size: 24px;
    font-weight: 400;
    line-height: 27.84px;
    font-family: 'Schibsted Grotesk', sans-serif;
    background: #fc5b00;
}

button {
    padding: 10px 20px;
    border-radius: 4px;
    background: #675e4e;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    line-height: 25.92px;
    text-align: center;
    color: #f1ede4;
    text-transform: uppercase;
    border: none;
}

button:hover,
button:active {
    background: #fc5b00;
    cursor: pointer;
}

.blue-button {
    background: #96ffff;
    color: #0c6f84;
}

.blue-button:hover,
.blue-button:active {
    background: #fda2ff;
    color: #ffffff;
}

form {
    font-family: 'Schibsted Grotesk', sans-serif;
}

label {
    font-size: 18px;
}

.content {
    max-width: 1564px;
    margin: 0 auto;
}

footer {
    background: #fd5b01;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 80px;
}

#footer-menu {
    display: flex;
    width: 100%;
    justify-content: space-between;
    color: #f4f1e9;
    margin-bottom: 80px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    line-height: 14.4px;
    text-align: left;
}

#footer-menu a {
    text-decoration: none;
    color: #f4f1e9;
    text-transform: uppercase;
}
footer img {
    max-width: 100%;
}

@media (min-width: 1281px) {
    .desktop-only {
        display: block;
    }
    .mobile-only {
        display: none;
    }
}
@media (max-width: 1280px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
    #logo {
        height: 47px;
        width: auto;
    }
    footer {
        padding: 30px;
    }

    #footer-menu {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
}
