body {
    text-align: center;
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    margin: 0;
    padding: 0;
}

#hero {
    width: 100%;
    margin: 28px auto 0px;
}

/* profile */
#profile {
    text-align: center;
    padding: 24px;
}

#profile img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 3px inset;
    margin-bottom: 0px;
    margin-top: 10px;
}

h1 {
    text-shadow: 0 0 0.2em rgb(255, 255, 255), 0 0 0.2em rgb(255, 255, 255),
        0 0 0.2em rgb(255, 255, 255);
    font-size: 2em;
    color: #000000;
    display: flex;
    justify-content: center;
    font-family: "Anton", sans-serif;
    font-family: "Kanit", sans-serif;
    margin-bottom: 1px;
}

h2 {
    text-shadow: 0 0 0.2em rgb(0, 0, 0), 0 0 0.2em rgb(0, 0, 0),
        0 0 0.2em rgb(0, 0, 0);
    font-size: 1em;
    color: #ffffff;
    display: flex;
    justify-content: center;
    font-family: "Anton", sans-serif;
    font-family: "Kanit", sans-serif;
    margin-bottom: 1px;
}

/* links */
ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
}

li {
    margin: 0 auto 0;
}

li a {
    display: flex;
    justify-content: center;
    padding: 16px 24px;
    border: 1px solid;
    border-radius: 30px 30px 30px;
    border-width: 2px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.492);
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    margin: auto;
    width: 300px;
    font-family: "Kanit", sans-serif;
    box-shadow: 0px 0px 10px 5px rgb(14, 88, 1);
    font-size: 24px;
    animation-name: anim-div;
    animation-duration: 1.5s;
}

#ultimo {
    margin-bottom: 50px;
}

#site {
    background: linear-gradient(to right, #35a32d, #7df570, #28b331, #7df570, #35a32d);
    color: black;
    box-shadow: 0px 0px 10px 5px rgb(14, 88, 1);

    border-color: rgb(255, 255, 255);
    text-shadow: 0 0 0.2em rgb(255, 255, 255), 0 0 0.2em rgb(255, 255, 255),
        0 0 0.2em rgb(255, 255, 255);
}

#feed {
    display: flex;
    width: 310px;
    margin: auto;
    justify-content: center;
    gap: 40px;
    flex-direction: column;
    align-items: center;
}

#feed img {
    width: 300px;
    display: flex;
    margin: 20px auto 0;
    padding: 10px;
    border: 3.5px solid rgb(14, 88, 1);
    border-radius: 40px;

}

#social-links {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    font-size: 24px;
    gap: 8px;
}

#social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 50%;
    color: rgb(255, 255, 255);
    border: 4px inset green;
}

video {
    display: flex;
    height: 445px;
    width: 250px;
    border: 5px inset;
    border-radius: 35px;
}

@media (max-width: 423px) {
    #hero {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    #texto {
        width: 350px;
        margin: 25px auto 0px;
    }
}

@keyframes anim-div {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}