@import url("https://fonts.googleapis.com/css2?family=Rethink+Sans&display=swap");

* {
  font-family: "Rethink Sans", sans-serif;
}

body {
  font-family: "NAVILLE", Fallback, sans-serif;
  background-image: url('background.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: black;
  color: #ffffff;
  margin: 0;
  padding: 0;
  height: 100%;
}

.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  color: #838383;
  font-size: 60px;
  background-image: linear-gradient(to right, #007bff, #b8b8b8, #007bff);
  -webkit-background-clip: text;
  background-clip: hidden;
  -webkit-text-fill-color: transparent;
  animation: rainbow-animation 120s linear infinite;
}

@keyframes rainbow-animation {
  to {
    background-position: 4500vh;
  }
}

h3 {
  color: #cacaca;
  font-size: 20px;
}

.undertext {
  margin-top: -40px;
}

.box-contain {
  display: flex;
  margin-top: 1em;
  width: 800px;
  text-align: center;
}

.box-brrr {
  width: calc(59% - 20px);
  border-radius: 2px;
  background-color: transparent;
  padding: 20px;
  display: block;
  box-sizing: border-box;
}

.pfp {
  width: 110px;
  height: auto;
  border-radius: 50%;
}

a {
  color: white;
}

.socials {
  display: grid;
  grid-auto-flow: column;
  grid-column-gap: 15px;
}

.socials-text {
  margin-top: -10px;
}

@media (max-width: 600px) {
  html,
  body {
    overflow-x: hidden;
  }
  .box-contain {
    flex-direction: column;
    align-items: center;
  }
  .box-brrr {
    max-width: 300px;
    padding: 1px;
  }
  .pfp {
    margin-top: 10px;
    width: 70px;
  }
  .undertext {
    margin-top: -50px;
  }
  h1 {
    margin-top: 5px;
  }
}
