@font-face {
    font-family: Metropolis;
    src: url(./font/Metropolis-Thin.otf);
  }

.flex {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(218,218,218,1) 100%);
}

.flex .logo {
  width: 40%;
}

@media only screen and (max-width: 900px) {
  .flex .logo {
    width: 80%;
  }
  
}


body {
    margin: 0;
    padding: 0;
    font-family:  Metropolis;
}

h1 {
    font-size: 12px;
    letter-spacing: 1px;
}

.card {
    width: 20%;
    height: 45%;
    background: white;
    box-shadow: 0 1px 1px rgba(0,0,0,0.12), 
    0 2px 2px rgba(0,0,0,0.12), 
    0 4px 4px rgba(0,0,0,0.12), 
    0 8px 8px rgba(0,0,0,0.12),
    0 16px 16px rgba(0,0,0,0.12);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: 1s;
}

.card:hover {
    width: 22%;
    height: 47%;
}

.top {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

.bottom {
  width: 100%;
  background: rgb(134,192,242);
  background: -moz-linear-gradient(187deg, rgba(134,192,242,1) 0%, rgba(76,134,203,1) 32%, rgba(16,74,163,1) 100%);
  background: -webkit-linear-gradient(187deg, rgba(134,192,242,1) 0%, rgba(76,134,203,1) 32%, rgba(16,74,163,1) 100%);
  background: linear-gradient(187deg, rgba(134,192,242,1) 0%, rgba(76,134,203,1) 32%, rgba(16,74,163,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#86c0f2",endColorstr="#104aa3",GradientType=1);
  display: flex;
  border-radius: 0px 0px 10px 10px;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  color: white;
}

.square {
    border: 1.5px solid white;
    margin-bottom: 50px;
    padding: 5px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(134,192,242);
    background: -moz-radial-gradient(circle, rgba(134,192,242,1) 0%, rgba(76,134,203,1) 32%, rgba(16,74,163,1) 100%);
    background: -webkit-radial-gradient(circle, rgba(134,192,242,1) 0%, rgba(76,134,203,1) 32%, rgba(16,74,163,1) 100%);
    background: radial-gradient(circle, rgba(134,192,242,1) 0%, rgba(76,134,203,1) 32%, rgba(16,74,163,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#86c0f2",endColorstr="#104aa3",GradientType=1);
    animation: blinking 4s infinite ease-in-out;
}

.bottom_row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom_row i {
    font-size: 14px;
    padding-right: 6px;
}


.container img {
    width: 60%;
}

p {
    font-size: 30px;
    padding: 0px;
    margin: 0px;
}

.timer {
    padding-bottom: 50px;
    text-align: center;
}

@keyframes blinking {
    0% {  
         background-size: 100% 100%;
    }
    50% {
        background-size: 120% 120%;

    }
    100% {
        background-size: 100% 100%;

    }
}

@media only screen and (max-width: 1200px) { 
    .card:hover {
        width: 35%;
    }
    .card {
        width: 30%;
    }

}

@media only screen and (max-width: 1000px) {
    
    h1 {
        font-size: 8px;
    }
}

@media only screen and (max-width: 900px) {
    h1 {
        font-size: 10px;
    }

  .card {
      width: 80%;
  }

  .card:hover {
      width: 90%;
      height: 50%;
  }

  .card img {
      width: 50%;
  }

 }