main{
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.hero{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 20px;
    z-index: 1;
}

.main-logo{
    width: 400px;
    z-index: 1;
}

.main-logo img{
    width: 100%;
    filter: drop-shadow(5px 5px 5px hsl(0, 0%, 0%, 75%));
    z-index: 1;
}

.about{
    color: var(--beige);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.explore-btns{
    display: flex;
    gap: 20px;
}

.explore-btns a{
    text-decoration: none;
    padding: 0.8rem 0.8rem;
    width: 200px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.explore-btns a:nth-child(1){
    color: var(--purple);
    background-color: var(--beige);
    border: 2px solid var(--beige);
}

.explore-btns a:nth-child(2){
    color: var(--beige);
    background-color: transparent;
    border: 2px solid var(--beige);
}

.explore-btns a:nth-child(2):hover{
    background-color: var(--beige);
    color: var(--purple);
}

@media (max-width: 500px){
    .main-logo{
        width: 80%;
    }

    .explore-btns{
        flex-direction: column;
    }
}