* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}


header {
  width: 100%;
  height: 100px;
  background-color: #023e8a;
  padding: 0px;
  display: flex;
  flex-wrap: flex;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.perfil {
    display: flex;
    flex-direction: row-reverse;
    width: 500px;
    align-content: center;
}

.perfil img {
    transform: scale(0.8,0.8);
}

.perfil h3 {
    align-self: center;
    margin-right: 10px;
    color: white;
}

.botoes {
    max-width: 1200px;
    display: grid;
    justify-content: center;
    grid-gap: 50px;
    grid-template-areas: 
    "botao botao"
    "botao botao";
}

.botoes a {
    display: block;
    grid-area: "botao";
    width: 350px;
    height: 350px;
    text-decoration: none;
    background-color: #77C9DF;
    font-size: 50px;
    text-align: center;
    padding: calc(350px / 2.5) 0px;
    color: white;
    font-weight: bolder;
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
}

.botoes a:hover {
    transform: scale(1.1,1.1);
}