html{
    font-size: 62.5%;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Roboto';
    word-wrap: break-word;
    background: linear-gradient(135deg, rgba(0,231,255,1) 0%, rgba(243,243,243,1) 100%);
    height: 100%;
    min-height: 100vh;
}
.central{
    width: 74.4rem;
    margin: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}
.top_menu{
    width: 100%;
    height: 100%;
}
.top_menu .logo{
    padding: 10rem 0 7rem;
    display: flex;
    justify-content: center;
}
.top_menu .logo a svg{
    height: 8rem;
}
.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;
}
.social_media ul li svg *{
    fill: #09252F;
}
.list_links{
    position: relative;
    top: -2.6rem;
}
.list_links ul{
    width: 100%;
    margin: auto;
}
.list_links ul li{
    width: 100%;
    height: 6.7rem;
    border: 0.2rem solid #09252F;
    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: #FFFFFF;
}
.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: 1.9rem;
    line-height: 1.9rem;
    text-align: center;
    color: #09252F;
}
.list_links ul li a p{
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.9rem;
    text-align: center;
    color: #09252F;
    padding-left: 0.8rem;
}