* {
  margin: 0px;
  padding: 0px;
}

body,
html {
  height: 100vh;
  background: #215486;
  background: linear-gradient(
    180deg,
    rgba(33, 84, 134, 1) 0%,
    rgba(11, 25, 38, 1) 100%
  );
  color: #ffffff;
  font-family: "Raleway", sans-serif;
}

.container-principal {
  max-width: 800px;
  margin: 0px auto;
}

/****************************** PROFILE ******************************/

.profile {
  margin-top: 20px;
  text-align: center;
}

.avatar {
  width: 80px;
  border-radius: 50%;
  border: 5px solid #1e202a;
  box-shadow: 4px 10px 15px 8px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

h1 {
  font-family: "IBM Plex Mono", monospace;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 5px;
}

h2 {
  font-size: 16px;
  font-weight: normal;
  /* margin-top: 2px; */
}

/****************************** SOCIAL ******************************/

.social ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  margin: 20px 0px;
}

.social img {
  width: 33px;
}

/****************************** LINKS ******************************/

.links ul {
  list-style: none;
}

.links li {
  background-color: #f4e6db;
  border-radius: 1000px;
  text-align: center;
  padding: 15px 30px;
  border: 5px solid #322929;
  margin: 20px 25px;
  box-shadow: 4px 10px 15px 8px rgba(0, 0, 0, 0.1),
    0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.links li:hover {
  transform: scale(1.05);
}

.links ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #322929;
  font-size: 16px;
  font-weight: bold;
}

/****************************** RODAPE ******************************/

.rodape {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: #1e202a;
  color: white;
}

.rodape a {
  color: #c4a47c;
}
