@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200&family=MuseoModerno:wght@200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Pinyon+Script&family=Sacramento&display=swap");
* {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

.main-container {
  max-width: 100vw;
  min-height: 100vh;
  background-color: #ccf88a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: hidden;
}

.main-container .text-container {
  width: 100vw;
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.main-container .text-container a {
  position: absolute;
  top: 2vh;
  left: 4vw;
  text-decoration: none;
  color: white;
  background-color: green;
  padding: .2rem .8rem;
  border-radius: 1rem;
  cursor: pointer;
}

.main-container .text-container a:hover {
  background-color: #2ca82c;
}

.main-container .text-container h1 {
  text-align: center;
  font-family: "Lobster" ,"sans-serif";
  font-size: 3rem;
  letter-spacing: 2px;
  color: green;
  margin-top: 2rem;
}

.main-container .button-container {
  width: 80vw;
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-container .button-container a {
  padding: .5rem 1rem;
  font-size: 1.6rem;
  margin-bottom: 2vh;
  border: 0;
  border-radius: 1rem;
  color: grey;
  text-decoration: none;
  cursor: pointer;
}

.main-container .button-container a:nth-child(1) {
  background-color: yellow;
}

.main-container .button-container a:nth-child(1):hover {
  background-color: #ffdf76;
  color: white;
}

.main-container .button-container a:nth-child(2) {
  background-color: skyblue;
}

.main-container .button-container a:nth-child(2):hover {
  background-color: #73b0c9;
  color: white;
}

.main-container .button-container a:nth-child(3) {
  background-color: orange;
}

.main-container .button-container a:nth-child(3):hover {
  background-color: orangered;
  color: white;
}

.main-container .button-container a:nth-child(4) {
  background-color: lightgreen;
}

.main-container .button-container a:nth-child(4):hover {
  background-color: #64a564;
  color: white;
}

.main-container .button-container a:nth-child(5) {
  background-color: lightpink;
  color: grey;
}

.main-container .button-container a:nth-child(5):hover {
  background-color: #e75369;
  color: white;
}

.main-container .button-container a:nth-child(6) {
  background-color: lightseagreen;
  color: grey;
}

.main-container .button-container a:nth-child(6):hover {
  background-color: #407976;
}

.main-container .button-container a:nth-child(7) {
  background-color: gray;
  color: white;
}

.main-container .button-container a:nth-child(7):hover {
  background-color: darkgrey;
}

.main-container .button-container a:nth-child(6) {
  background-color: lightseagreen;
  color: white;
}

.main-container .button-container a:nth-child(6):hover {
  background-color: #407976;
}
/*# sourceMappingURL=projects_home.css.map */