@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;500&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

body{
    background-image: radial-gradient(#272005, #000000); fixed;
}

.center{
    max-width: 500px;
    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: 135px;
}

.logo img{
    width: 100%;
    border-radius: 50%;
    vertical-align: middle;
}

.img-logo:hover{
    border-color: #b49206;
}
.img-logo{
    border:2px solid #e8d06c;
    border-radius: 50%;
    padding:3px;
    transition: 0.3s;
}

.desc{
    text-align: center;
    color: #e8d06c;
    margin:10px 0;
}

.desc h2{
    font-weight: normal;
}

.desc p{
    color: #e8d06c;
}

.link{
    width: 100%;
    text-align: center;
}

.link a{
    color: #e8d06c;
    text-decoration: none;
}

.link .link-a:hover{
    background: #d9bf53;
    color: #000000;
}

.link .link-a{
    position: relative;
    border-radius: 200px;
    border:2px solid #e8d06c;
    padding:12px;
    margin:17px 0;
    transition: 0.3s;
}

.link .link-a i{
    position: absolute;
    left: 20px;
    line-height: 1;
    font-size: 23px;
}

.link .link-a h3{
    font-weight: normal;
	font-size: 17px;
}

.link2{
    margin-top:10px;
}

.link2 i:hover{
    transform: scale(1.3);
}

.link2 i{transition: 0.3s;}

.link2 a{
    color: #e8d06c;
    font-size: 25px;
    margin:0 5px;
}