html {
  background-color: black;
  color: #fff;
  font-family: "Poppins", sans-serif;
  width: 100%;
  height: 100%;
}
header {
  border-bottom: 2px solid hotpink;
  text-align: left;
}

#heading {
  font-size: 50px;
  text-decoration: none;
  display: inline;
  color: white;
}

a {
  text-decoration: none;
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: bold;
}

#links {
  display: flex;
  width: 100%;
  text-align: right;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 25px;
  justify-content: right;
}

.field {
  padding: 10px;
  display: inline-block;
}

#section {
  padding-top: 20px;
}
.column {
  width: 29%;
  height: 60%;
  padding: 2%;
  display: inline-block;
  vertical-align: top;
}

h2 {
  color: #fff;
}

#column-1 {
  background-color: hotpink;
}

#column-3 {
  background-color: hotpink;
}

#icons {
  display: block;
  color: white;
  font-weight: bold;
}

footer {
  display: block;
  text-align: center;
}
@media screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .column {
    display: block;
    width: fit-content;
    height: fit-content;
    padding: 5%;
    margin: 2%;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .column {
    display: block;
    width: fit-content;
    height: fit-content;
    padding: 5%;
    margin: 2%;
  }
}
