@import url(./fonts/fonts.css);
body{
    padding: 0px;
    margin: 0px;
    background-color: #111827;
    color: white;
    --accent-color:#4f46e5;
    width: 100vw;
    height: 100dvh;
    color: white;
    
}
*, :root{
    overflow: hidden hidden;
}
a{
    color: white;
}
body{
    height: 100dvh;
    width:100vw;
    display:grid;
    grid-template-rows:1fr 8fr 1fr;
    grid-template-columns:1fr;
}
nav{
    padding:.8rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    

    >img{
        width:50px;
        height:50px;
    }
    >div{
        display: flex;
        justify-content:flex-end;
        gap:20px;
        align-items: center;
    }
}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;

    >*{
        animation: fade-in 2s;
    }

    >h1{
        font-size:3rem;
        margin-block: 5px 0px;
        font-weight: bold;
        font-family: "Space Mono Bold";
    }
    >p{
        opacity:.7;
        width: 50%;
        text-align: center;
        font-weight: light;
        margin-top:0px;
    }
    >.actions{
        display:flex;
        flex-direction:row;
        gap:10px;
        margin-bottom:5rem;
    }
}
.lunar-logo{
    --size:150px;
    width:var(--size);
    height:var(--size);
    animation: spin-logo 3s, fade-in 3s;
}
@keyframes spin-logo {
    0%{
        transform: rotate(45deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
@keyframes fade-in {
    0%{
        scale:.8;
    }
    100%{
        scale:1;
    }
}
.btn{
    background-color: white;
    color:#111827;
    padding: .7rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: bold;
}
@media (max-width:900px) {
    .lunar-logo{
        --size:100px;
    }
    main > p{
        width: 90%;
    }
}


footer{
    padding:.5rem 1rem;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;

    >.socials{
        display: flex;
        flex-direction: row;
        align-items: center;
        gap:1rem;
    }
}