html {
  font-family: 'Oxygen', sans-serif;
  height: 100%;
  width: 100%;
}

body {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-image: url(/assets/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes colorchange
{
  0% {background: #f44336;}
  5% {background: #e91e63 ;}
  10% {background: #9c27b0 ;}
  15% {background: #673ab7;}
  20% {background: #3f51b5;}
  25% {background: #2196f3;}
  30% {background: #2196f3;}
  35% {background: #00bcd4;}
  40% {background: #009688 ;}
  45% {background: #4caf50;}
  50% {background: #8bc34a;}
  55% {background: #cddc39;}
  60% {background: #ffeb3b;}
  65% {background: #ffc107;}
  70% {background: #ff9800;}
  75% {background: #ff5722;}
  80% {background: #795548;}
  85% {background: #9e9e9e;}
  90% {background: #607d8b;}
  100% {background: #000000;}
}

.container {
  margin: 0 auto;
  width: 100%;
}

h1 {
  color: white;
  text-align: center;
  user-select: none;
}

#loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#loader > .container {
  display: flex;
  justify-content: center;
}

svg {
  width: 100px;
  height: 100px;
  margin: 20px;
  display: inline-block;
}

.social {
  width: 30px;
  margin: 0 1rem;
}

.social-container {
  display: flex;
  justify-content: center;
}

.container-text {
  justify-content: center;
  display: flex;
  user-select: none;
  margin-bottom: 1.4rem;
  color: white;
  font-size: 1.5rem;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col {
  background-color: rgba(255, 255, 255, .15);
  backdrop-filter: blur(5px);
  width: 20rem;
  display: flex;
  height: 20rem;
  margin: 1rem;
  padding: 0.5rem;
  justify-content: center;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
}
.col img {
  width: 80%;
}

.col:hover{
  background-color: rgba(255, 255, 255, 0.308);
  cursor: pointer;
}

.col > h2 {
  align-items: center;
  position: relative;
  bottom: 0;
}
