body,h1,h2,h3,h4,h5,h6 {
  font-family: "Raleway", sans-serif;
}

body, html {
  height: 100%;
  line-height: 1.8;
  background-color: #fbf7f2;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    text-align: center;
  }
  .contact-info p {
    margin-bottom: 10px;
  }
}

#home {
  position: relative;
  min-height: 100vh;
  background-color: #fbf7f2;
}

.hero-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-image: url("media/portrait-large.PNG");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.w3-bar .w3-button {
  padding: 16px;
}

.hero-img.shrink {
  transform: translateY(-50%) scale(0.5);
  opacity: 0;
}