@import url("https://fonts.googleapis.com/css2?family=Chonburi&amp;display=swap");
body{
  background: radial-gradient(500px at 7.4% 17.9%, rgb(82, 107, 248) 0.3%, rgb(167, 139, 252) 90.5%);
 font-family: "Chonburi", cursive;
   transition:background 0.2s linear;
}
.dark {
  background: radial-gradient(circle at 10% 20%, rgb(0, 107, 141) 0%, rgb(0, 69, 91) 90%);
}
.dark .container {
   background: #272727;
   color: whitesmoke;
}
.dark section {
    color:#1c1c1d;
    background: radial-gradient(circle at 10% 20%, rgb(0, 107, 141) 0%, rgb(0, 69, 91) 90%);
}
.dark .label {
  border: 1px solid whitesmoke;
}
.container{
  color: #1c1c1d;
  background:whitesmoke;
  border-radius:20px;
  padding:40px;
  box-shadow: -1px 5px 14px 2px rgba(0, 0, 0, 0.2);
  min-width:450px;
}
.label {
  display:flex;
  background-color:black;
  border-radius:30px;
  cursor:pointer;
  align-items:center;
  justify-content:space-between;
  padding:2px;
  position:relative;
  height:20px;
  width:50px;
  transform:scale (1.5);
   padding:5px;
 
} 

.label .btn {
  background-color:whitesmoke;
  border-radius:50%;
  position:absolute;
  top:3px;
  left:5px;
  height:24px;
  width:26px;
  transform:translateX(0px);
  transition:transform 0.2s linear; 
}
.checkbox:checked + .label .btn{
  transform: translateX(24px);
}
.checkbox {
  opacity: 0;
  position: absolute;
}
.fa {
  color:whitesmoke;
}

.cabecalho {
  display:flex;
  justify-content:space-between;
}
.perfil{
  display:flex;
  text-align:center;
  margin:10px 40px;
  padding:10px 40px;
}
img {
  border-radius: 400px;
  max-height: 160px;
  box-shadow: -1px 5px 14px 2px rgba(0, 0, 0, 0.2);
}
.photo {
  text-align: center;
  
}
.titulo {margin-left:50px;
  text-align:center;
}
.titulo p {
  font-family: "Roboto", sans-serif;
}
section {
   box-shadow: -1px 5px 14px 2px rgba(0, 0, 0, 0.2); 
    background: radial-gradient(500px at 7.4% 17.9%, rgb(82, 107, 248) 0.3%, rgb(167, 139, 252) 90.5%);
  border-radius: 15px;
  margin:10px 80px;
  padding:10px 90px;
}
.projeto-titulo {
  font-size:30px;
  text-align:center;
}
ul { 
  margin-top: 30px;
  list-style:none;
}
 li {text-align:center;
  display:inline-block;
  font-size:18px;
  margin: 10px 20px;
}
 .links-socialMidia{
   display:flex;
   margin:10px 100px;
  justify-content:space-between;
   
}
.social-midia a {
  text-align:center;
  font-size:18px;
  text-decoration:none;
  color:black;
}
.social-midia i {
  display:block;
  font-size:30px;
  color:black;
}