@keyframes animate-border {
  from {
    border-color: rgba(0, 0, 0, 0.01);
    border-width: 0px;
  }

  to {
    border-color: rgba(0, 0, 0, 0.05);
    border-width: 50px;
  }
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: stretch;
  flex-flow: column wrap;
}

.logo {
  box-sizing: content-box;
  position: relative;
  border-style: solid;
  border-radius: 50%;
  border-color: #ffffff;
  border-width: 50px;
  z-index: 9;
  object-fit: cover;
}

.logo:hover {
  animation-name: animate-border;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.sub-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  padding: 2%;
  flex-grow: 7;
}
/* .name {
  font-family: "Permanent Marker", cursive;
  font-size: 30px;
  margin: 1% 0 1% 0;
  background-color: rgba(255, 243, 80, 0.5);
  border: none;
  z-index: 9;
} */
.subhead {
  width: 70%;
  padding: 2%;
  margin-top: 0%;
  /* background-color: rgba(255, 243, 80, 0.5); */
  border: none;
  font-family: "Poppins", sans-serif;
  color: #000300;
  font-size: 23px;
  font-weight: 600;
  text-align: center;
  z-index: 9;
}

.particles-js-canvas-el {
  position: absolute;
  z-index: 0;
}

/* responsive styles */
/* Max - 320px */
@media only screen and (max-width: 320px) {
  .logo {
    width: 50%;
    height: fit-content;
  }
  .name {
    font-size: 16px;
    margin: 4% 0 2% 0;
  }
  .subhead {
    font-size: 14px;
    width: 90%;
  }
  .nav {
    width: 100%;
    margin: 0 auto;
    padding: 1%;
    flex-grow: 1;
  }
  .nav button {
    padding: 1% 5% 1% 5%;
    height: fit-content;
    font-size: 5px;
    display: flex;
    justify-content: space-between;
    flex-flow: column wrap;
    text-align: center;
    align-items: center;
  }
}

/* 321px to 375px */
@media only screen and (min-width: 321px) and (max-width: 375px) {
  .logo {
    width: 50%;
    height: fit-content;
  }
  .name {
    font-size: 20px;
    margin: 4% 0 2% 0;
  }
  .subhead {
    font-size: 18px;
    width: 90%;
  }
  .nav {
    width: 100%;
    margin: 0 auto;
    padding: 1%;
    flex-grow: 1;
  }
  .nav button {
    padding: 1% 5% 1% 5%;
    height: fit-content;
    font-size: 8px;
    display: flex;
    justify-content: space-between;
    flex-flow: column wrap;
    text-align: center;
    align-items: center;
  }
}

/* 376px to 425px */
@media only screen and (min-width: 376px) and (max-width: 425px) {
  .logo {
    width: 45%;
    height: fit-content;
  }
  .name {
    font-size: 24px;
    margin: 4% 0 2% 0;
  }
  .subhead {
    font-size: 20px;
    width: 90%;
  }
  .nav {
    width: 100%;
    margin: 0 auto;
    padding: 1%;
    flex-grow: 1;
  }
  .nav button {
    padding: 1% 5% 1% 5%;
    height: fit-content;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    flex-flow: column wrap;
    text-align: center;
    align-items: center;
  }
}

/* 426px to 768px */
@media only screen and (min-width: 426px) and (max-width: 768px) {
  .logo {
    width: 25%;
    height: fit-content;
  }
  .name {
    font-size: 26px;
    margin: 4% 0 2% 0;
  }
  .subhead {
    font-size: 24px;
    width: 90%;
  }
  .nav {
    width: 100%;
    margin: 0 auto;
    padding: 1%;
    flex-grow: 1;
  }
  .nav button {
    padding: 1% 5% 1% 5%;
    height: fit-content;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    flex-flow: column wrap;
    text-align: center;
    align-items: center;
  }
}

/* 769px to 1024px */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
}
