@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&family=Roboto+Flex:opsz,wght@8..144,200;8..144,300;8..144,400;8..144,500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}

body{
    background: -webkit-gradient( linear, left bottom, left top, from(#860412), to(#C31400)) fixed;
}

.center{
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2%;
}

section.box1 {
    margin-top: 50px;
}

.container{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo {
    width: 100%;
    max-width: 125px;
}

.logo img{
    width: 100%;
    border-radius: 50%;
}

.desc{
    text-align: center;
    color: white;
    margin: 10px 0;
}

.desc h2{
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.desc p{
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 15px;
}

.link {
    width: 100%;
    text-align: center;
}

.link a{
    color: #FFF;
    text-decoration: none;
}

.link .link-a:hover{
    background: #FFF;
    color: #860412;
    font-weight: 500;
}

.link .link-a{
    position: relative;
    border: 1px solid #FFF;
    padding: 20px;
    border-radius: 30px;
    margin: 17px 0;
    transition: 0.3s;
}

.link .link-a p{
    font-size: 13px;
}

.link .dots1{
    position: relative;
}

.link .dots1 i{
    position: absolute;
    left: 2%;
    font-size: 25px;
    
}

.link .dots2{
    position: relative;
    
}

.link .dots2 i{
    position: absolute;
    top: 100%;
    left: 100%;
    transform: translate(-100%, -100%);
    font-size: 16px;
}

.midias{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    
}

.midias a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    margin: 0 15px;
    color: #FFF;
    text-decoration: none;
    box-shadow: 2px 2px 10px -1px rgba(168,208,224,0.14), -2px -2px 10px -1px rgba(168,208,224) ;
    border-radius: 50%;
    transition: 0.5s;
}

.midias a i{
    font-size: 35px;
}
