html{
    font-size: 62.5%;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Roboto';
    word-wrap: break-word;
    background-size: cover;
    background-image: url(../img/fundo.webp);
}
.central{
    width: 74.4rem;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.top_menu{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.top_menu .logo{
    padding: 6rem 0 5rem;
    display: flex;
    justify-content: center;
}
.top_menu .logo a svg{
    width: 22.1rem;
    height: 5.7rem;
}
.social_media{
    display: flex;
    justify-content: center;
    padding-bottom: 5.6rem;
}
.social_media ul{
    display: flex;
}
.social_media ul li{
    margin-right: 1.3rem;
}
.social_media ul li:last-child{
    margin-right: 0;
}
.social_media ul li svg{
    width: 2.6rem;
    height: 2.6rem;
}
.list_links{
    width: 100%;
    height: 100%;
}
.list_links ul{
    width: 100%;
    margin: auto;
}
.list_links ul li{
    width: 100%;
    height: 6.7rem;
    border: 0.2rem solid #00D8FF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.7rem;
    border-radius: 1.2rem;
    transition: all 0.3s linear;
}
.list_links ul li:hover{
    background-color: #00D8FF;
}
.list_links ul li a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.list_links ul li a h1{
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    color: #FFFFFF;
    transition: all 0.3s linear;
}
.list_links ul li:hover a h1{
    color: #471b48;
}
.list_links ul li a p{
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    color: #FFFFFF;
    padding-left: 0.8rem;
}