* {
  font-size: 12px;
}

html,
body {
  padding: 0;
  margin: 0;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(255, 251, 255);
}

/*
@mixin reset_main {
  // border: 3px solid black;
  display: grid;
  grid-template-columns: 19vw auto;
  min-height: 100vh;
  width: 100%;
}

@mixin user_profile {
  margin-top: 1vw;
  height: 100%;
  min-height: 10vh;
  background-color: $white1;
  //  border: 2px solid red;

  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  .item {
    // border: 2px solid black;
    display: flex;
    height: fit-content;
    &:nth-of-type(1) {
      .column {
        display: flex;
        flex-direction: column;
        margin-left: 1vw;
        &:nth-of-type(1) {
          button {
            padding: 0.5vw;
            box-sizing: border-box;
            border: 0;
            outline: unset;
            background-color: $darkgreen;
            border-radius: 5px;
            cursor: pointer;
            span {
              font-size: 2vw;
              color: $white1;
            }
            &:hover {
              background-color: lighten($darkgreen, 10);
            }
          }
        }
        &:nth-of-type(2) {
          h1,
          h2 {
            font-family: $font1;
            margin: 0;
          }
          h1 {
            font-size: 1vw;
            color: $darkgreen;
          }
          h2 {
            font-size: 0.8vw;
            color: $blue1;
          }
        }
      }
    }
  }
}

@mixin logout_pop {
  #logout_popup {
    position: fixed;
    top: 0;

    left: 0;
    width: 100%;
    height: 100vh;

    //display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    display: none;
    opacity: 0;
    z-index: 10;
    .overlay {
      background-color: rgba(black, 0.7);
      position: fixed;
      width: 100%;
      height: 100vh;
      top: 0;
      left: 0;
    }
    .card {
      width: 30vw;
      height: fit-content;
      border-radius: 5px;
      background-color: $white1;
      margin-top: 2vh;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      padding: 1vw;
      box-sizing: border-box;
      z-index: 10;

      #logout_pop_closeBtn {
        color: $red;
        font-size: 1.5vw;
        cursor: pointer;
        border: 0;
        outline: unset;
        background-color: transparent;
        &:hover {
          color: lighten($red, 15);
        }
      }
      .content {
        display: flex;
        flex-direction: column;
        width: 100%;

        font-family: $font1;

        .row {
          display: flex;
          justify-content: space-around;
          // border: 2px solid red;
          padding: 0.5vw 1vw;
          box-sizing: border-box;

          h1 {
            width: 100%;
            text-align: center;
            font-family: $font2;
            border: 2px solid blue;
            border: 0;
            font-size: 1vw;
            color: $red;
          }
          a {
            text-decoration: none;
          }

          a,
          button {
            display: flex;
            justify-content: center;
            width: 40%;
            margin-left: 1vw;
            font-size: 1vw;
            font-weight: 500;
            color: $white2;
            text-transform: uppercase;
            padding: 0.5vw 1vw;
            font-size: 0.8vw;
            border: 0;
            outline: unset;
            cursor: pointer;
            border-radius: 5px;
          }
          button {
            background-color: $teal;
            &:hover {
              background-color: lighten($teal, 15);
            }
          }
          a {
            background-color: $red;
            &:hover {
              background-color: lighten($red, 15);
            }
          }
        }
      }
    }
    //background-color: rebeccapurple;
  }
}
*/
header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 5vh;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  background-color: rgb(23, 15, 17);
  color: rgb(255, 251, 255);
  padding: 1vw;
  box-sizing: border-box;
}
header > h1 {
  font-family: "Lilita One", sans-serif;
  font-size: 1.5em;
  width: 100%;
  font-weight: 400;
  padding: 0;
}
header nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 1vw;
       column-gap: 1vw;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  /*
  a.active {
    background-color: $white1;
    color: $black;
  }
  */
}
header nav a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: rgb(255, 251, 255);
  margin-right: 1vw;
  font-size: 1.2em;
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  border: 2px solid transparent;
  padding: 0.2vw 0.5vw;
  box-sizing: border-box;
  border-radius: 5px;
  cursor: pointer;
}
header nav a:hover {
  color: #00b8f4;
}

footer {
  height: 5vh;
  background-color: rgb(23, 15, 17);
  color: rgb(255, 251, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer h1 {
  font-family: "Roboto", sans-serif;
  font-size: 1.2em;
}/*# sourceMappingURL=nav.css.map */