* {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
}

section {
  width: 100%;
  min-height: 100vh;
}
section:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section:nth-of-type(1) #mygrid {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3vw;
       column-gap: 3vw;
  align-items: center;
}
section:nth-of-type(1) #mygrid .left,
section:nth-of-type(1) #mygrid .right {
  width: 100%;
}
section:nth-of-type(1) #mygrid .left svg {
  width: 80%;
}
section:nth-of-type(1) #mygrid .right {
  width: 90%;
}
section:nth-of-type(1) #mygrid .right .content,
section:nth-of-type(1) #mygrid .right > h1 {
  padding: 0.2vw 0.5vw;
  box-sizing: border-box;
  border: 2px solid #002631;
}
section:nth-of-type(1) #mygrid .right > h1 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5vw;
  font-family: "Lilita One", sans-serif;
  color: #002631;
  margin-top: 5vh;
  font-weight: 500;
}
section:nth-of-type(1) #mygrid .right .content {
  display: flex;
  flex-direction: column;
}
section:nth-of-type(1) #mygrid .right .content p {
  font-family: "Roboto", sans-serif;
  font-size: 1.2vw;
  margin-bottom: 1vw;
}

@media only screen and (max-width: 750px) {
  section:nth-of-type(1) #mygrid {
    width: 90%;
    grid-template-columns: 1fr;
  }
  section:nth-of-type(1) #mygrid .left,
  section:nth-of-type(1) #mygrid .right {
    margin-left: auto;
    margin-right: auto;
  }
  section:nth-of-type(1) #mygrid .left {
    display: flex;
    margin-top: 5vh;
    justify-content: center;
  }
  section:nth-of-type(1) #mygrid .right > h1 {
    font-size: 4vw;
    padding: 0.8vw 2vw;
  }
  section:nth-of-type(1) #mygrid .right .content p {
    font-size: 3.5vw;
  }
}/*# sourceMappingURL=about.css.map */