@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
  background: url("https://cdn.vox-cdn.com/thumbor/aGlCvaZlBIntmux7DkDEaqU0E-M=/0x0:2040x1360/1200x675/filters:focal(857x517:1183x843)/cdn.vox-cdn.com/uploads/chorus_image/image/69494838/acastro_190618_1777_cloud_gaming_0003.0.jpg");
  font-family: "Roboto", sans-serif;
}

.principal {
  padding: 50px;
  background: rgba(236, 244, 255, 0.7);
  box-shadow: 6px 6px 6px #0e1d2f;
  border-radius: 20px;
}
.foto-perfil {
  border-radius: 460px;
  -webkit-box-shadow: 0px 0px 32px 18px rgba(92, 89, 91, 1);
  -moz-box-shadow: 0px 0px 32px 18px rgba(92, 89, 91, 1);
  box-shadow: 0px 0px 32px 18px rgba(92, 89, 91, 0.7);
  max-height: 150px;
}

.titulo {
  margin-left: 30px;
}

.titulo h1 {
  font-weight: 700;
  font-size: 36px;
}
.titulo h3 {
  font-weight: 400;
  font-size: 24px;
}

.conteudo {
  background: rgb(64, 64, 64);
  background: linear-gradient(
    90deg,
    rgba(64, 64, 64, 0.5102415966386555) 0%,
    rgba(9, 9, 121, 0.5298494397759104) 50%,
    rgba(255, 0, 228, 0.38139005602240894) 100%
  );
  padding: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
  border-radius: 20px;
}

.conteudo ul {
  text-shadow: 2px 2px 0 #bcbcbc, 4px 4px 0 #9c9c9c;
  margin-left: -50px;
  font-weight: 700;
  font-size: 40px;
}

.conteudo li {
  text-shadow: 0 0 10px #ffffff, 2px 2px 2px rgba(206, 89, 55, 0);
  margin-top: 5px;
  list-style-type: none;
  font-weight: 400;
  font-size: 23px;
}

li a {
  text-decoration: none;
  color: #1c1c1c;
}

.codepen {
  height: 400px;
  box-sizing: border-box;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  margin: 1em 0;
  padding: 1em;
}

.info {
  display: flex;
}
.tema button {
  box-shadow: 3px 4px 0px 0px #e8e8e8;
  background: linear-gradient(to bottom, #f5f6ff 5%, #ebe8eb 100%);
  background-color: #f5f6ff;
  border-radius: 15px;
  border: 1px solid #1a061a;
  display: inline-block;
  cursor: pointer;
  color: #2e242e;
  font-family: Arial;
  font-size: 17px;
  font-weight: bold;
  padding: 7px 25px;
  text-decoration: none;
}
.tema button:hover {
  background: linear-gradient(to bottom, #bab1ba 5%, #ededed 100%);
  background-color: #bab1ba;
}
.tema button:active {
  position: relative;
  top: 1px;
}

.container {
  display: flex;
  justify-content: space-between;
}

.dark .principal {
  background: rgba(0, 0, 0, 0.88);
}

.dark .titulo {
  color: white;
}

.dark .tema button {
  box-shadow: 3px 4px 0px 0px #e8e8e8;
  background: linear-gradient(to bottom, #000000 5%, #706c70 100%);
  background-color: #000000;
  border-radius: 15px;
  border: 1px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: Arial;
  font-size: 17px;
  font-weight: bold;
  padding: 7px 25px;
  text-decoration: none;
}
.dark .tema button:hover {
  background: linear-gradient(to bottom, #706c70 5%, #000000 100%);
  background-color: #706c70;
}
.dark .tema button:active {
  position: relative;
  top: 1px;
}