@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap')
;


*{ 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body{
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.671);
}
 .container{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  width: 100%;
  padding: 30px;
  background: radial-gradient(circle, rgba(58, 86, 159, 1) 29%,rgba(2, 51, 116, 1) 98%);
} 
 .links a{
  font-size: 1em;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}
 .links a:hover{
  color: #d5d5d5; 
}
 .content{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  width: 50%;
  text-align: left; 
}

.content-box h2{
  color: #fff;
  font-size: 2em;
  font-weight: 500; 
}
.content-box h1{
  color: #fff;
  font-size: 2.5em;
  font-weight: 600; 
  margin-bottom: 35px;
  line-height: 40px;
}

.circle{
  position: relative;
  width: 345px;
  height: 345px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;  
}


.content-box a{
    font-size: 1em;
    color: #fff;
    background: #215ab3;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 19px;
    margin: 10px 0;
    text-decoration: none;
    transition: 0.5s;
}
.content-box a:hover{
    background: #fff;
    color: #215ab3;  
 }
.text-animation{
animation: typing 3s stops(40, and);
overflow: hidden;
white-space: nowrap;
border-radius: 2px solid #fff;
}
@keyframes typing{
 from{ width: 0;}
}
.sci{
display: flex;
align-items: center;
width: 100%;
justify-content: start;
}

.sci li {
list-style: none;
}

.sci li a{
text-decoration: none;
color: #fff;
margin: 0 10px;
}

.sci li a i{
transition: 0.3s;
}

.sci li a:hover i{
transform: translateY(-10px);
}

.right{
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.circle::before{
content:'';
position: absolute;
inset: -20px 0;
background: linear-gradient(325deg, #f4960b, #1ba1ed);
transition: 0.5s;
animation: rotate 4s linear infinite;
z-index: 1;
}

.circle:hover::before{
inset: -10px 140px;
}
@keyframes rotate{
0%{
    transform: rotate(0deg);
}

100%{
    transform: rotate(360deg);

  }   
}

.circle img{
    width: 345px;
    height: 345px; 
    border-radius: 50%;
    z-index: 2;
}

/*RESPONSIVO--*/
