@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oswald:wght@200..700&display=swap');

@keyframes fade-in{
  0%{opacity: 0;}
  100%{opacity: 1;}
}

@keyframes fade-out{
  0%{opacity: 1;}
  100%{opacity: 0;}
}

@keyframes move-buttons{
  0%{margin:0px;}
  100%{margin:10px;}
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

body,html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #202022;
  }

.MainText
{
    font-family: "Bebas Neue";
    background: linear-gradient(to right, #21c9f3,#8785ff);
    font-size: 150px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-shadow: 0 0 10px rgba(126, 240, 255, 0.623);
}

.container {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

.CoolButton{
  font-family: "Nunito", serif;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  border-radius: 5px;
  margin: 10px;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
  animation: move-buttons 1s;
}

.CoolButton:hover {
  background-color: #ffffff; 
  font-weight: 400;
  transform: scale(1.2);
  z-index: 10;
  color: rgb(0, 0, 0);
}

.clicked{
  font-size: 50px;
}

.intro-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    animation: fade-in 2s;
}

.vignette {
  width: 100%;
  height: 100vh;
}

.vignette::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.back{
  position: absolute;
  font-family: "Bebas Neue";
  color: white;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background-color: transparent;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 24px;
  animation: fade-in 2s;
  transition: all .4s ease-in-out;
}

.back:hover{
  background-color: white;
  color: black;
}

.footer{
  position: fixed;
  left: 0px;
  bottom: 0;
  width: 100%;
  text-align: center;
  justify-content: center;
  animation: fade-in 2s;
}

.img-button{
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.img-button img{
  width: 40px;
  height:auto;
  opacity: .5;
  transition: all .25s ease-in-out;
}

.img-button img:hover{
  opacity: 1;
}