/* hello what are you doing here */

/* body styling */

body {
  background-color:#F8F9F9;
}

.notnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
  
.title {
  text-align: center;
  font-weight: 10vw;
}

.name {
  font-family: 'Pacifico', cursive !important;
  white-space: nowrap;
}

.nav {
  z-index: 69;
  overflow: hidden;
  background-color: #f8f9f9;
  color: #000000;
  top: 0px;
  opacity: 0.9;
  position: sticky;
}

.nav a {
  float: left;
  display: block;
  color: #000000;
  text-align: center;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
}

.nav .icon {
  display: none;
}

.alert {
  border: 3px solid #ff0f0f;
  padding: 12px 24px;
  border-radius: 8px;
  background: none;
}

/*@media screen and (max-width: 500px) {
  .nav a:not(:first-child) {display: none;}
  .nav a.icon {
    float: right !important;
    display: block !important;
  }
}

@media screen and (max-width: 500px) {
  .nav.responsive {position: relative !important;}
  .nav.responsive .icon {
    position: absolute !important;
    right: 0px !important;
    top: 0px !important;
  }
  .nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}*/

.banner {
  overflow: hidden;
  border-radius: 8px;
  background-color: #ee2400;
  color: #000000;
  top: 0px;
  text-align: center;
}

.spacer {
  line-height:12px;
}

.social {
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 7px;
  text-decoration: none;
}

.footer {
  text-align: center !important;
  opacity: 0.7;
}

/* Card credits to Alombi (https://github.com/alombi/alombi.github.io/blob/master/Stylesheets/main.css)*/

.card{
    border-radius: 14px;
    width: 98%;
    background-color: white;
    padding: 4px;
    margin-bottom: 15px;
}
.card-title{
    padding-top: 10px;
    padding-left: 10px;
    font-weight: 700;
}
.card-description{
    margin-top: -10px;
    padding-left: 10px;
    opacity: 0.7;
}
.card-footer{
    padding-bottom: 25px;
    padding-left: 10px;
    margin-top: -15px;
    opacity: 0.5;
    font-weight:700;
    font-size: 13px;
}
.card a{
    text-decoration: none;
    color: black;
}

/* fontawesome styling */

i.fab {
  color: #000000
}

/* waving animation */

.wave {
  animation-name: wave-animation;
  animation-duration: 2s;        
  animation-iteration-count: infinite;  
  transform-origin: 70% 70%;       
  display: inline-block;
}

@keyframes wave-animation {
    0% { transform: rotate( 0.0deg) }
   10% { transform: rotate(14.0deg) }
   20% { transform: rotate(-8.0deg) }
   30% { transform: rotate(14.0deg) }
   40% { transform: rotate(-4.0deg) }
   50% { transform: rotate(10.0deg) }
   60% { transform: rotate( 0.0deg) }  
  100% { transform: rotate( 0.0deg) }
}

/* dark mode */

@media (prefers-color-scheme: dark){
    i.fab {
      color: #ffffff;
    }
   body{
        background-color: #2c2f33;
    }
   
   .nav {
     background-color: #2c2f33;
     color: #ffffff;
  }
  
  .nav a {
     background-color: #2c2f33;
     color: #ffffff;
  }
  
   .card {
     background-color: #4f555c;
     color: white;
  }
  
  .card-description, .card-footer {
    color: white;
  }
}
