@import url("https://fonts.googleapis.com/css?family=Raleway:100,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Codystar:300");

body {
  background-color: black;
  color: white;
  font-family: "Raleway";
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.content {
  display: block;
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  box-sizing: border-box;
  padding: 2vw;
}

#project-title {
  font-family: "Codystar";
  font-size: 8vw;
  font-weight: 300;
  text-align: center;
  word-break: break-word;
}

#project-title-row {
  position: relative;
  top: 30%;
  margin-top: -4vw;
}

@media only screen and (max-width: 1024px) {
  #project-title {
    font-size: 10vw;
  }
  .content {
    padding: 4vw;
  }
  #project-description-body {
    font-size: 1em;
    padding: 4vw;
  }
}

@media only screen and (max-width: 768px) {
  #project-title {
    font-size: 12vw;
  }
  .content {
    padding: 6vw;
  }
  #project-description-body {
    font-size: 0.95em;
    padding: 6vw;
  }
}

@media only screen and (max-width: 480px) {
  #project-title {
    font-size: 14vw;
  }
  .content {
    padding: 8vw;
    overflow-x: hidden;
  }
  #project-description-body {
    font-size: 0.9em;
    padding: 8vw;
  }
  .cool_url a {
    font-size: 1.1em;
    margin: 10px;
  }
}

.cool_url {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cool_url a {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.5em;
  margin: 20px;
  transition: color 0.2s;
  text-decoration: none;
}

.cool_url a:hover {
  color: white;
  text-decoration: none;
}

.cutie {
  text-align: center;
}

.cutie img {
  width: 350px;
  height: 350px;
  max-width: 90vw;
  max-height: 60vw;
}

@media only screen and (max-width: 768px) {
  .cutie img {
    width: 220px;
    height: 220px;
    max-width: 80vw;
    max-height: 50vw;
  }
}

@media only screen and (max-width: 480px) {
  .cutie img {
    width: 140px;
    height: 140px;
    max-width: 90vw;
    max-height: 40vw;
  }
}