body {
  background: url(wallpaper.png);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.allBox {
  position: absolute;
  border: solid gray;
  border-radius: 10px;
  margin-top: 5%;
  margin-left: 21.6%;
  margin-right: 21.6%;
  background-color: rgb(254, 252, 252);
}

.navigation {
  flex: 1; /* Ocupa 1 parte */
  border: dashed gray;
  border-radius: 10px;
  padding: 2%;
}

.aboutMe {
  flex: 2;
  border-radius: 10px;
  padding: 2%;
}

.updates {
  flex: 1;
  border: solid gray;
  border-radius: 10px;
  padding: 2%;
}

.header img {
  border-radius: 10px;
  width: 100%;
}

.box {
  display: flex;
  justify-content: space-between; 
  align-items: flex-start; 
  padding: 2%;
  gap: 20px;
}

/*Cor dos botões na área de Navigation*/
a:active {
    color: rgb(255, 158, 158);

}
a:visited{
    color:  rgb(240, 201, 255);
}
a:hover{
    color: rgb(90, 57, 57);
}