@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Voltaire&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins";
    font-family: "League Spartan";
}
body{
    background: #040010;
    color: rgb(89, 205, 255);
    color: rgb(182, 219, 190);
}
#topbar{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    justify-content: center;
    align-items: center;
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 20px;
}
#logo{
    font-family: "League Spartan";
    font-size: 3rem;
    color: #eb8;
    grid-column: 1/2;
}
#logo a{
    text-decoration: none;
    color: #eb8;
}
#hero img{
    height: 100%;
    
}
nav{
    grid-column: 3/4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    font-size: 1.1rem;
    text-align: center;
}
nav div{
    text-align: center;
}
nav a{
    text-decoration: none;
    color: rgb(182, 219, 190);
    color: rgb(199, 137, 199);
    text-align: center;
}

#landing{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
    padding: 20px;
    margin: 0 auto;
    width: 1000px;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: #fff1;
    font-weight: 300;
    background: linear-gradient(0deg at 10px 10px, #fff0, #fff1, #fff0);
}
#landing-blurb{
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    font-size: 1.44rem;
}
#self-photo1{
    max-width: 400px;
    grid-column: 2/3;
    grid-row: 1/2;
    width: 100%;
}
#self-photo2{
    max-width: 400px;
    opacity: 0;
    transition: opacity 1s;
    grid-column: 2/3;
    grid-row: 1/2;
    width: 100%;
}
.self-photo-reveal{
    opacity: 1;
}
#meteor-shower{
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1000;
    overflow: hidden;
    top: 0;
    left: 0;
}
.meteor{
    background: red;
    background: radial-gradient(circle at 90px 10px, #4af9, transparent 4px);
    height: 20px;
    width: 100px;
    display: grid;
    justify-content: center;
    align-items: center;
    rotate: 135deg;
    position: absolute;
}
.meteorTail{
    background: radial-gradient(farthest-side at 100%, #4af5, transparent);
    height: 10px;
    width: 85px;
}
#mobileNavButton{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    width: 30px;
    gap: 4px;
    padding: 8px;
    border: 2px solid rgb(182, 219, 190);
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    display: none;
}
.menuButtonBar{
    width: 20px;
    height: 2px;
    background: white;
    margin: 0 auto;
    background: rgb(182, 219, 190);
}

@media only screen and (max-width: 1099px) {
    #landing{
        width: 100vw;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr;
        height: auto;
        padding: 0;
        gap: 10px;
    }
    #landing-blurb{
        grid-row: 2/3;
        font-size: 1.2rem;
    }
    #logo{
        text-align: center;
        align-content: center;
    }
    #mobileNavButton {
        display: grid;
        margin: 0 auto;
    }
    #topbar{
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
        width: 100vw;
    }
    nav{
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-columns: 1fr;
        grid-column: 1/2;
        gap: 10px;
        margin: 20px;
        display: none;
    }
    #self-photo1{
        grid-row: 1/2;
        grid-column: 1/2;
        margin: 0 auto;
    }
    #self-photo2{
        grid-row: 1/2;
        grid-column: 1/2;
        margin: 0 auto;
    }
  }