@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

html, 
body {
    height: 100%;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: white;
    background-color: black;
}

.padding {
    padding-bottom: 2rem;
}


/* Basic Elements */
 
a {
    color: white;
}

a:hover {
    text-decoration: none;
    color: gray;
}



footer {
    padding-bottom: 5rem;
}

footer .nav-link {
    color: white;
}
footer .nav-link:hover {
    color: gray;
}

h1,h2,h3,h4,h5,h6 {
    color: white;
}

/* NAV */
.navbar.active {
    animation: fadeIn 2s forwards;
  }
  
  .navbar.notActive {
    animation: fadeOut 2s forwards;
  }
  
  @keyframes fadeIn {
    from {background-color:rgba(0, 0, 0, 0);}
    to {background-color:rgba(0, 0, 0, 1);}
  }
  
  @keyframes fadeOut {
    from {background-color:rgba(0, 0, 0, 1);}
    to {background-color:rgba(0, 0, 0, 0);}
  }

/* Blinking */
.blinking{
    animation:blinkingText 4s infinite;
}

@keyframes blinkingText{
    0%      {     color: rgb(255, 55, 95);}
    70%     {    color: rgb(255, 55, 95);}
    80%     {    color: transparent; }
    90%     {    color: transparent; }
    100%    {   color: rgb(255, 55, 95);}
}


/* LOADER */
#loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader > img {
    width: 100px;
}

#loader.hidden {
    animation: loaderFadeOut 1s;
    animation-fill-mode: forwards;
}

@keyframes loaderFadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.thumb {
    height: 100px;
    border: 1px solid black;
    margin: 10px;
}

/* CARDS  */
.card {
    background-color: black; 
    border: 1px solid;
}

/* Custom */

.bg-card {
    background-color: rgba(54, 54, 54, 0.9);
}
.bg-card-text-color {
    color: rgba(54, 54, 54, 0.9);
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.align-horizontally {
width: 50%;
margin: 0 auto;
}


/*---Media Queries --*/
@media (max-width: 992px) {

}
@media (max-width: 768px) {

}
@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
}