html {
  background-color: #1f1f1f;
  color: white;
}

body {
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lgo {
  border-radius: 50%;
  border-style: solid;
  border-width: 5px;
  border-color: #1f1f1f;
  margin-right: 50px;
  cursor: pointer;
  width: 250px;
}

.lgo:hover {
  filter: brightness(100%);
  transition: all 1s ease;
}
.lgo:not(:hover) {
  filter: brightness(30%);
  transition: all 1s ease;
}
.ttlg {
  width: 225px;
  display: inline-block;
  vertical-align: middle;
}

.cont {
  padding-top: 2px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 15px;
  background-color: #484848;
  height: fit-content;
  width: max-content;
  border-radius: 10px;
}

@media only screen and (max-width: 320px) {
  body {
    padding-bottom: 5vh;
  }
}

@media only screen and (max-width: 600px) {
  .cont {
    width: 95%;
  }
  .lgo {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  body {
    padding-bottom: 5vh;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
