
@font-face {
  font-family: Averia;
  src: url(/static/fonts/AveriaSerifLibre-Regular.ttf);
}

@font-face {
  font-family: IBM-plex;
  src: url(/static/fonts/IBMPlexSans-Regular.ttf);
}

p {
  font-family: IBM-plex;
}

body {
  background-color: black;  
  color: white;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 20px;

  background-color: black;
  padding: 4px;
  border-radius: 20px;

}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  color: white
}

h1 {
  font-family: Averia;
  font-size: 60px;
}

h2 {
  font-family: Averia;
  font-size: 40px;
}

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


#navbar {
  height: 10vh;
  padding: 20px;
}

#navbar img {
  background-color: black;
  width: 100px;
  height: 100px;
}

#quota {
  font-size: 18px;
  font-family: IBM-plex;
}


#quota-box {
  padding-top: 40px;
  width: 800px;
  justify-self: center;
  align-self: center;
}

#quota-box label {
  padding: 5px;
}

#quota-box p {
  font-size: 24px; 
}

#message {
  height: 300px;
}

.small_field {
  width: 40%;
  height: 24px;
}

#store-pic {
  width: 604px;
  height: 573px;
  border-radius: 20px;
}

#container {
  display: grid;
  width: 100%;
  justify-items: center;

  /* grid-template-rows: 1fr 1fr; */
  row-gap: 10vh;
}

#selector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "left right" "bottom bottom";
  gap: 4em;
  place-items: center;
}

.selector {
  text-align: center;
  position: relative;
}

.selector img {
  width: 150px;

  animation: spin 9s linear infinite reverse;
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.selector p {
  font-size: 15pt !important;
  font-family: Averia;
}

.selector:hover .contact-box {
  opacity: 1;
  filter: blur(0px);
  visibility: visible;
}

.contact-box {
  text-align: center;
  position: absolute;

  width: 550px;
  /* height: 150px; */
  background-color: black;
  opacity: 0;
  visibility: hidden;

  transition: opacity 0.5s ease, filter 0.5s ease, visibility 0.5s ease;
  filter: blur(10px);

  right: 20%;
  padding: 1em;
  border-radius: 20px;

  z-index: 2;
}


#bottom {
  grid-area: bottom;
}

#bottom img {
  animation: spin 9s linear infinite;
}

#landing {
  width: 1300px;
  height: 60vh;
  align: center;
  place-items: center;
  /* column-gap: 8%; */
  
  display: grid;

  grid-template-columns: 40% auto;
  
  background-color: black;
  color: white;

  justify-self: center;
  align-self: center;
}

#short_description {
  width: 345.76px;
}


#instagram-grid {
  /* height: 90vh; */
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
  display: grid;

  margin: 3em;
}

.card {
  width: 400px;
  height: 500px;
  border-radius: 20px;
}

#default {
  color: green;
}

#landing p {
  font-size: 35px;
}

#about {

  display: flex;
  flex-direction: column;
  
  width: 656px;
  font-size: 24px;
  justify-self: center;

  /* margin-top: auto; */
  /* margin-bottom: auto; */
  /* height: 100vh; */

  align: center;
  place-items: center;
}


#about > p {
  text-align: justify;
}

#about > h2 {
  text-align: left;
}

/* smartphone sizing */
@media (max-width: 425px) {
  
  #landing {
    width: 90%;
    height: 60vh;
    align: center;
    place-items: center;
    /* column-gap: 8%; */
  
    display: grid;

    /* grid-template-columns: 40% auto; */
    grid-template-columns: 1fr;
    row-gap: 4em;
  
    background-color: black;
    color: white;

    justify-self: center;
    align-self: center;
  }

  #container {
    /* padding-left: 3em; */
    /* padding-right: 3em; */

    grid-template-rows: 1fr 1fr;
    row-gap: 500px;
  }
  
  #about {

    display: flex;
    flex-direction: column;
  
    width: 90%;
    font-size: 24px;
    justify-self: center;

    /* font-size: 15px; */


    /* margin-top: auto; */
    /* margin-bottom: auto; */
    /* height: 100vh; */

    align: center;
    place-items: center;
  }

  .selector {
    text-align: center;
    position: static;
  }

  .contact-box {
    text-align: center;
    position: absolute;

    width: 80%;
    /* height: 150px; */
    background-color: black;
    opacity: 0;
    visibility: hidden;


    padding-bottom: 3em;
    
    right: 0;

    z-index: 2;
  }

  #instagram-grid {
    /* height: 90vh; */
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5em;
    display: grid;
  }
  .card {
    width: 130px;
    height: 200px;
    border-radius: 20px;
  }

  
}
