*{
    padding: 0;
    margin: 0;
    text-align: center;
    color: red;
    transition: transform 0.5s;
    cursor: url(cursor.png) 16 16, default !important;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* HOVER */
img:hover, h1:hover, p:hover, li:hover{
    transform: scale(1.2);
}
/* ----- */

/* BACKGROUND */
#bgVideo{
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
}
/* ---------- */

main{
    background:  rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 50px;
    border-radius: 25px;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

header img{
    border-radius: 100%;
    width: 100px;
    height: 100px;
    text-align: center;
}

header h1{
    text-shadow:
        0px 0px 16.5px #fe0200;
}

header p{
    font-size: 1.3em;
    height: 1.3em;
}

ul.social{
    display: flex;
    gap: 25px;
}

ul.social li.social_item{
    list-style: none;
}

ul.social li.social_item a.social_link{
    width: 50px;
    height: 50px;
    border: 2.5px solid;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.social li.social_item a.social_link{
    text-decoration: none;
}

ul.social li.social_item a.social_link i{
    font-size: 1.5em;
}