@font-face {
    font-family: 'Pricedown';
    src: url('assets/fonts/Pricedown Bl.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1c1c1c;
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

header {
    background-color: #2b2b2b;
    padding: 1.25rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    font-family: 'Pricedown', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 1.25rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.125rem;
}

.landing {
    height: 100vh;
    background: url('images/thumbnails/HighresScreenshot00001.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000000;
}

.landing h1 {
    font-size: 3.125rem;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.landing p {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.cta-button {
    background-color: #f39c12;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.125rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e67e22;
    cursor: pointer;
}

.features {
    padding: 3.125rem;
    text-align: center;
    background-color: #333;
}

.features h2 {
    font-size: 2.25rem;
    margin-bottom: 1.875rem;
}

.feature-card {
    background-color: #444;
    padding: 1.25rem;
    margin: 1.25rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
}

.feature-card p {
    font-size: 1.125rem;
}

.media {
    padding: 3.125rem;
    text-align: center;
}

.media h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.gallery img {
    width: 18.75rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #2b2b2b;
    padding: 1.25rem;
    text-align: center;
}

@media (max-width: 1024px) {
    nav .logo {
        font-size: 1.25rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .landing h1 {
        font-size: 2.5rem;
    }

    .landing p {
        font-size: 1.25rem;
    }

    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: 1rem;
    }

    .feature-card {
        width: 100%;
        margin: 1rem 0;
    }

    .gallery img {
        width: 100%;
        max-width: 18.75rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.875rem;
    }

    nav .logo {
        font-size: 1.125rem;
    }

    nav ul li {
        margin-left: 0.75rem;
    }

    .landing h1 {
        font-size: 2rem;
    }

    .landing p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .features h2 {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .gallery img {
        width: 100%;
        max-width: 18.75rem;
    }
}

@media (max-width: 480px) {
    .landing h1 {
        font-size: 1.5rem;
    }

    .landing p {
        font-size: 0.875rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .features h2 {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    .gallery img {
        width: 100%;
        max-width: 16rem;
    }
}

button {
    height: 3.125rem;
    margin: 0.3125rem;
    width: 7.5rem;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Consolas, Courier New, monospace;
    border: solid #404c5d 1px;
    font-size: 1rem;
    color: rgb(161, 161, 161);
    transition: 500ms;
    border-radius: 5px;
    background: linear-gradient(145deg, #2e2d2d, #212121);
    box-shadow: -1px -5px 15px #41465b, 5px 5px 15px #41465b, inset 5px 5px 10px #212121, inset -5px -5px 10px #212121;
}

button:hover {
    box-shadow: 1px 1px 13px #20232e, -1px -1px 13px #545b78;
    color: #d6d6d6;
    transition: 500ms;
}

button:active {
    box-shadow: 1px 1px 13px #20232e, -1px -1px 33px #545b78;
    color: #d6d6d6;
    transition: 100ms;
}


.pricedown {
    font-family: 'Pricedown', sans-serif;
    text-transform: uppercase;
    transition: 1s ease-in-out;
    color: #ffbb4e;
}

.pricedown:hover {
    transition: 1s ease-in-out;
    animation: hovering 2s infinite;
    color: #ffbb4e;
}
@keyframes hovering {
    0% {
        color: #ffbb4e;
    }
    50% {
        color: #f39c12;
    }
    100% {
        color: #ffbb4e;
    }
}