* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font: normal normal 16px Verdana, Arial, sans-serif; }

html {
  height: 100%; }

body {
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: start;
  background-color: #7e46a4; }

h1 {
  font-size: 2.5em;
  color: white; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.5em; }

#wrapper {
  display: grid;
  grid-gap: 2em;
  width: 100vw; }

.courses {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
  padding: 0 2em; }

.projects {
  grid-template-columns: 1fr 1fr 1fr 1fr; }

@media screen and (max-width: 900px) {
  .projects {
    grid-template-columns: 1fr 1fr 1fr; } }
@media screen and (max-width: 760px) {
  .projects, .courses {
    grid-template-columns: 1fr 1fr; } }
@media screen and (max-width: 610px) {
  .projects, .courses {
    grid-template-columns: 1fr; } }
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  height: 75px; }
  header h2 {
    font-size: 2.5em;
    padding-left: 1em;
    color: white; }
  header nav {
    padding: 2em 0; }
    header nav ul {
      display: flex; }
    header nav ul li {
      list-style-type: none;
      margin-right: 20px; }
      header nav ul li.lastItem {
        margin: 0; }
      header nav ul li a {
        font-size: 19px;
        line-height: normal;
        color: white;
        text-decoration: none;
        transition: .4s; }
        header nav ul li a:hover {
          color: #ae87bf; }

@media screen and (max-width: 900px) {
  header h2 {
    font-size: 2em;
    padding-left: .75em;
    color: white; }
  header nav ul li {
    list-style-type: none;
    margin-right: 15px; }
    header nav ul li a {
      font-size: 16px; } }
@media screen and (max-width: 760px) {
  header h2 {
    font-size: 1.75em;
    padding-left: .70em;
    color: white; }
  header nav ul li {
    list-style-type: none;
    margin-right: 12px; }
    header nav ul li a {
      font-size: 14px; } }
@media screen and (max-width: 610px) {
  header h2 {
    font-size: 1.25em;
    padding-left: .5em;
    color: white; }
  header nav ul li {
    list-style-type: none;
    margin-right: 10px; }
    header nav ul li a {
      font-size: 11px; } }
footer {
  grid-row-start: 2;
  grid-row-end: 3;
  display: flex;
  align-items: center;
  width: 100vw;
  background-color: #44235b;
  color: white;
  font-weight: lighter;
  height: 75px;
  padding: 0 1em; }
  footer a {
    color: white;
    text-decoration: none;
    transition: .4s; }
    footer a:hover {
      color: #ae87bf; }

button {
  padding: 1em;
  background-color: white;
  border: 1px solid #ae87bf;
  border-radius: .5em;
  color: #44235b;
  font-size: .8em;
  transition: .3s; }
  button:hover {
    color: #ae87bf;
    border: 1px solid transparent; }

.course {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
  min-height: 180px;
  border-radius: 4px;
  box-shadow: 10px 10px 0 #ae87bf;
  background-color: #fff; }
  .course h2 {
    padding-bottom: 1em; }
  .course p {
    padding-bottom: 1em; }

.project {
  border: 5px solid #ae87bf;
  border-radius: 50%;
  width: 100%;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: ease-in .4s; }
  .project:hover {
    background-color: #ae87bf; }
  .project a {
    text-decoration: none;
    color: white;
    text-align: center;
    transition: .4s; }
    .project a:hover {
      color: #7e46a4; }

/*# sourceMappingURL=style.css.map */
