.body_app{
    top: 0;
    margin-top: 0;
    min-height: initial;
    position: initial;
    background: #adff2f;
}
body, body * {
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-weight: 500;
    transition: .5s color;
    letter-spacing: 0.1px;
    line-height: 1.4;
    color: black;
}
b {
    font-weight: 600;
}
button:focus, input:focus {
    outline: none;
    box-shadow: none;
}


nav{
    position: absolute;
    z-index: 1;
    height: 50px;
    display: flex;
    width: 100%;
    justify-content: center;
}
nav img{
    width: 40px;
}


.hero {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.hero img {
    max-width: 35vw;
}
aside {
    position: absolute;
    z-index: 1;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

aside a,
aside button,
dialog button,
.link {
    border-radius: 20px;
    background: greenyellow;
    padding: 2px 10px;
    transition: .5s all;
    box-shadow: #efffd7 0px 0px 6px 3px;
    border: none;
    cursor: pointer;
}
aside a:hover,
aside button:hover,
.link:hover {
    padding: 20px;
    background: #8bea04;
    text-decoration: none;
    transition: .2s all;
}

dialog {
    max-width: 30vw;
    border: none;
    border-radius: 10px;
}
dialog button {
    background: #f469ff;
    transition: .2s all;
}
dialog button:hover {
    padding: 2px 30px;
    background: #d12ede;
}
::backdrop {
    background-color: rgb(139 234 4 / 0.75);
    backdrop-filter: blur(20px);
}

.pink {
    color: #f469ff;
}
.green {
    color: #8bea04;
}
.yellow {
    color: #ffed00;
}

.main-btn {
    position: absolute;
    bottom: 20vh;
    display: flex;
    z-index: 2;
    width: 100%;
    justify-content: center;
}

.btn-about {
    width: 150px;
    height: 150px;
    background: #f469ff;
    border: none;
    cursor: pointer;
    clip-path: url(#burst-shape);
    transition: .3s all;
    color: #ffed00;
    box-shadow: #efffd7 0px 0px 6px 3px;
    padding: 0;
}
.btn-about:hover {
    filter: drop-shadow(0 0 14px #8bea04);
    background: #8bea04;
    transform: rotate(10.5deg) scale(1.4);
}

@media (max-width: 480px) {
    nav img {
        width: 30px;
    }
    .hero {
        flex-direction: column;
        justify-content: space-evenly;
    }
    .hero img {
        max-width: 82vw;
        margin-top: -20vh;
    }
    .main-btn {
        bottom: 25vh;
    }
    aside {
        width: calc(100% - 60px);
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 0 30px;
    }
    dialog {
        max-width: 95vw;
        font-size: 0.9em;
        max-height: 90vh;
        overflow-y: scroll;
    }
}