@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Oswald:wght@200..700&display=swap');

@media only screen and (max-width: 480px) {   
    body {
        padding: 50px 0;
    }
    
    header {
        padding: 0 20px;
    }
    
    .links {
        flex-direction: column;
    }
    
    .links a,
    .links-hero a {
        width: 75vw;
        font-size: 1.4rem;
    }

    footer {
        display: none;
    }
}

@media only screen and (min-width: 1440px) {
    body header h1 {
        font-size: 5rem;
    }
    
    body header p {
        font-size: 3rem;
    }
}

body {
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), no-repeat center url("assets/bg.jpg");
    background-size: cover;
    color: #f4f1de;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

header {
    margin-bottom: 20px;
    font-family: "Bungee", serif;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

header p {
    font-size: 1.8rem;
    margin: 0;
}

.colored {
    color: #e07a5f;
}


.links-hero {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.links-hero a {
    text-decoration: none;
    font-size: 1.8rem;
    color: #f4f1de;
    background: #e07a5f;
    padding: 15px 30px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.links a {
    text-decoration: none;
    font-size: 1.4rem;
    color: #e07a5f;
    background: #f4f1de;
    padding: 15px 30px;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.links a:hover {
    background-color: #e07a5f;
    color: #f4f1de;
}

.links-hero a:hover {
    background-color: #f4f1de;
    color: #e07a5f;
}

footer {
    position: absolute;
    bottom: 20px;
}

footer p {
    font-size: 0.9rem;
    margin: 0;
}