body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 100px 0px 100px;
  height: 20vh;
  color: #ff686b;
}

.header h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 44pt;
  color: white;
}

.header h3 {
  font-family: 'Akaya Telivigala', cursive;
  color: white;
}

.main {
  position: relative;
}

#main-background {
  background: linear-gradient(0.39turn, #ff006e, #ff686b);
  fill: white;
}

.svg-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 65vh;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 7vw;
  margin-top: 5vh;
}

.container .links {
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-shadow: -10px 8px 0px #ffffff52;
          box-shadow: -10px 8px 0px #ffffff52;
  background: white;
  padding: 1px 20px 1px 20px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 20px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.container .links:hover {
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  -webkit-box-shadow: 0px 2px 5px #310f0f31;
          box-shadow: 0px 2px 5px #310f0f31;
}

.container .links #svg {
  fill: #ff686b;
}

.container .links p {
  padding-left: 10px;
  color: #ff686b;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 100px;
  color: #ff686b;
  font-family: 'Akaya Telivigala', cursive;
}

.homework-container {
  font-family: 'Roboto';
}

.homework-container #image {
  width: 100vw;
}
/*# sourceMappingURL=stylesheet.css.map */