/* this is my first time using css, chatgpt came in clutch tbh */

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    text-align: center;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgb(133, 159, 61) transparent;
    /* scrollbar-gutter: stable; */
}

::-webkit-scrollbar {
    width: auto;
}

/* ::-webkit-scrollbar-track {
    background: transparent;
} */

/* ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
} */

body {
    background-image: linear-gradient(rgba(0,0,0,0.65),rgba(0,0,0,0.65)),url(images/background.png);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: transparent;
}

.banner {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}

header {
    font-family: "Sour Gummy", sans-serif;
    font-size: 60px;
    color: rgb(133, 159, 61)
}

.home-page {
    margin: auto;
    padding: 35px 0;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    z-index: 1;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

#pepe {
    width: 200px;
    height: 200px;
    position: fixed;
    right: 4%;
    top: 1%;
    animation: fadeIn 5s;
}

#pepeLabel {
    position: fixed;
    right: 0.5%;
    top: 24%;
    animation: fadeIn 10s ease;
}

.home-page button{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    font-family: "Sour Gummy", sans-serif;
    font-size: 30px;
    color: rgb(133, 159, 61);
    background-color: transparent;
    border: 2px solid rgb(133, 159, 61);
    cursor: pointer;
    padding: 10px 20px;
} 


.content {
    width: 100%; 
    position: absolute;
    top: 40%;
}

.content h1 {
    font-family: "Sour Gummy", sans-serif;
    font-size: 40px;
    color: rgb(133, 159, 61);
}

p {
    font-family: "Sour Gummy", sans-serif;
    font-size: 24px;
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
    color: rgb(246, 252, 223);
}

img {
    border: 10px solid rgb(133, 159, 61);
}

.pThePark {
    background: rgba(49, 81, 30, 0.7);
    border: 4px solid rgba(246, 252, 223, 0.7);
    border-radius: 10px;
    justify-content: center;
    width: 60%;
    position: center;
    margin-left: 20%;
    
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pThePark.show {
    display: block;
    opacity: 1;
}

.pFirstDate {
    background: rgba(49, 81, 30, 0.7);
    border: 4px solid rgba(246, 252, 223, 0.7);
    border-radius: 10px;
    justify-content: center;
    width: 60%;
    position: center;
    margin-left: 20%;
    
    display: none;
    opacity: 0;
    transition: opacity 2.0s ease;
}

.pFirstDate.show {
    display: block;
    opacity: 1;
}

.pMoviesMusic {
    background: rgba(49, 81, 30, 0.7);
    border: 4px solid rgba(246, 252, 223, 0.7);
    border-radius: 10px;
    justify-content: center;
    width: 60%;
    position: center;
    margin-left: 20%;
    
    display: none;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.pMoviesMusic.show {
    display: block;
    opacity: 1;
}

/* computer */
@media (max-width: 1024px) {
    header {
        font-size: 40px;
    }

    .home-page button {
        font-size: 20px;
        margin: 10px 0;
    }

    p {
        font-size: 16px;
        line-height: 22px;
    }
}

/* phone */
@media (max-width: 480px) {
    header {
        font-size: 30px;
    }

    .home-page button {
        font-size: 16px;
        padding: 6px 12px;
    }

    p {
        font-size: 14px;
    }

    .pFirstDate {
        width: 90%;
        margin-left: 5%;
    }
    .pThePark {
        width: 90%;
        margin-left: 5%;
    }
    .pMoviesMusic {
        width: 90%;
        margin-left: 5%;
    }

    img {
        width: 90%;
        height: auto;
        margin: 10px 0;
    }
    
    #pepe {
        display: none;
    }

    #pepeLabel {
        display: none;
    }
}
