*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html{
  font-family: sans-serif;
  font-size: 15px;
  min-height: 100vh;
}

html::selection{
  background-color: #FFEAE6;
  color: black;
}

body{
  background-color: white;
  color: black;
  min-height: 100%;
  border: 1px solid black;
  
}

.caja{
  display: flex;
  flex-direction: row;
}

p, h1{
  margin:0.5cm 0.5cm 20px 15px;
}

header{
  background-color: coral;
  color: white;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

header a{
  display: inline-block;
  padding: 1em;
  background-color: coral;
  color: white;
  text-decoration: none;
}

header a:hover {
    background-color: lightcoral;
    color: white;
}

ul{
  display: flex;
  flex-direction: row;
}

li{
  list-style: none;  
}

main{
  max-width: 75vw;
  height: 90vh;
  border: 1px solid #aaaa;
  margin: 1em auto;
  border-radius: 10px;
  text-align: center;
}

aside{
  width: 20vw;
  height: 90vh;  
  border: 1px solid gray;
  border-radius: 10px;
  margin: 1em;
}

aside img{
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

main p{
  text-align: justify;
}

footer{
  justify-content: center;
  align-items: center;
  background-color: coral;
  color: white;
  display: flex;
  align-content: center;
  padding: 1.3em;
}

.perfil{
  border: 1px solid gray;
  border-radius: 10px;
  margin: 6px;
}

h4{
  margin: 6px;
}

.perfil .info__perfil{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 6px;
  background-color: coral;
  color: white;
  border-radius: 6px;
}

.perfil__personal{
  display: flex;
  flex-direction: row;
  margin: 6px;
  gap: 6px;
}

.perfil__personal img{
  width: 2em;
  height: 2em;
  border-radius: 100%;
}