* {
  box-sizing: border-box;
  margin: 0;
  font-family: Ubuntu, sans-serif;
  background-color: #000080;
  color: #f5f5f5; 
}
@font-face {
  font-family: "Ubuntu";
  src: url("fonts/Ubuntu-Regular.ttf") format('truetype');
}
header, footer {
  min-height: 100px;
}
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px;
}
section > div {
  font-size: 1.5em;
}
.bottomSpacer {
  padding-bottom: 50px;
}
li {
  list-style-type: '\2713';
  padding-left: 10px;
  padding-bottom: 10px;
}
#heading, #idiomas {
  text-align: center;
}
.highlight {
  font-weight: bold;
  letter-spacing: 2px; 
}
.bulletPoint{
  opacity: 0;
  transition: 3s opacity;
  padding-bottom: 15px;
}

.infoWrapper {
 opacity: 0;
  transition: 3s opacity;
}
.visible{
  opacity: 1;
}


@media only screen and (max-width: 600px) {
  header, footer {
    min-height: 50px;
  }
  section > div {
  font-size: 1.2em;
}
}