@font-face {
  font-family: "bluu";
  src: url(assets/BluuNext-Bold.otf);
}
body {
  background-color: black;
  color: white;
}
ul {
  list-style-type: none;

  padding: 0;
}
a,
a:visited {
  color: white;
  text-decoration: none;
}

a:hover {
  color: blue;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: center;
  margin-top: 50px;
  margin-left: -10px;
}
.names {
  font-size: 20pt;
  font-family: bluu;

  display: flex;
  flex-direction: row;
  margin-top: 20px;
  padding-left: 15px;
}

.leftnames {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: right;
}

.rightnames {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: left;
}

.bottom{
  margin-top: 20px;
  font-family: bluu;
  color: gray;
  font-size: 16pt;
  width: 60%;
  max-width: 570px;
  min-width: 400px;
  text-align: center;
}

#line_white {
  height: 400px;
  width: 100px;
}

#sculp {
  height: 100px;
  max-width: 90vw;
}



@media (max-width: 450px) {
  .main {
    margin-top: 15px;
  }
  .names {
    flex-direction: column;
    font-size: 14pt;
    line-height: 1.5em;
    margin-top: -20px;
  }

  .leftnames {
    text-align: left;
  }
  .rightnames {
    margin-top: -18px;
  }
  .bottom{
    font-size: 10pt;
    min-width: 230px;
    margin-top: 5px;
  }
  #line_white {
    display: none;
  }
  #sculp {
    height: 80px;
    max-width: 80vw;
  }
}
