html body {
  background-image: url('./images/night-sky.jpeg');
  font-family: 'Oswald', sans-serif;
  box-sizing: border-box;
}

.mini-container {
  display: none;
}

.home-container {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  height: 90vh;
  width: 100%;
}

.intro {
  width: 600px;
  height: 450px;
  border-radius:50%;
  border: solid 15px black;
  cursor:pointer;
}

.intro-name {
  background-image: linear-gradient(to bottom right, #ccc, #ffb74d);
}

.intro-img {
  background-image: url('./images/profile.jpeg')
}

.social-link-container {
  position: absolute;
  left: 25px; 
  top: 75px; 
  color: #ccc;
}

.social-links {
  color: #ccc;
}

.social-links:hover {
  color: #fb8c00;
}

.home-contact-info {
  position: absolute;
  right: 25px; 
  top: 50px; 
  color: #ccc;
}

.contact-container {
  background-image: linear-gradient(to bottom right, #ccc, #ffb74d);
  margin-top: 25px;
  padding: 10px;
}

#email-link {
  color: #ccc;
}

#email-link:hover {
  color: #fb8c00;
}

.input-field label {
  color: #000;
}

.portfolio-card {
  width:305px;
  height: 412px;
  overflow:hidden;
}

.portfolio-card-image {
  max-width: 100%;
  transition: all 0.4s;
}

.portfolio-card-image:hover {
  transform: scale(1.1);
}

.page-footer {
  display: none;
}

.footer-list > li {
  display: inline-block;
  margin-top: 0;
  padding-right: 5px;
  padding-left: 5px;
}

.footer-list > li:hover {
  text-decoration:underline;
}

@media only screen and (max-width: 992px) {
  .portfolio-card {
    width: 100%;
    height: auto;
  }

  .react-card-flip {
    width: 90%;
  }
}

@media only screen and (max-width: 850px) {
  .social-link-container {
    display: none;
  }
  
  .home-contact-info {
    display: none;
  }

  .mini-container {
    display: block;
  }

  #hello {
    font-size: 3em;
  }

  .react-card-front, .react-card-back {
    width: 100%;
    display: flex;
  }

}