
:root {
  --brand-color: #10f7ff;
  --background-color: #000000;
  --text-color: #cccccc;

  /* --background-color: #ffffff;
  --text-color: #000000; */
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background: var(--background-color);
  color: var(--text-color);
  height: 100vh;
  overflow: hidden;
  font-family: "Loos Extended", sans-serif;
}


a {
  text-decoration: none;
  color: var(--text-color);
}


header {
  padding: 0 15px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

header .logo {
  cursor: pointer;
}

header .logo,
header .join {
  width: 100%;
}

header .menu {
  display: flex;
  gap: 15px;
  width: max-content;
}

header .menu > * {
  transition: color 0.3s;
  cursor: pointer;
}

header .menu > *:hover {
  color: #ffffff;
}

header .join {
  display: flex;
  justify-content: flex-end;
}

header .join .button {
  color: #10f7ff;
}


main {
  height: calc(100vh - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .cover {
  color: white;
  text-align: center;
  width: calc(100% - 2 * 5px);
  height: calc(100% - 5px);
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: #eeeeee;
  background: url("../img/cover.png");
  background-position: right center;
  background-size: cover;
  border-radius: 15px;
}

main .cover .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .cover .name {
  font-size: 40px;
}

main .cover .buttons {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}

main .cover .buttons > * {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  color: #ffffff;
  backdrop-filter: blur(5px);
  border: 2px solid #ffffff;
}


main .info {
  text-align: left;
  width: calc(100% - 2 * 5px);
  height: calc(100% - 5px);
  display: flex;
  justify-content: space-between;
  /* background: #1f1f1f; */
  border-radius: 15px;

  display: none;
}

main .info .content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

main .info .content p {
  font-size: 20px;
}

main .info .image {
  min-width: 50%;
  background: url("../img/about.png");
  background-size: cover;
  background-position: center center;
  border-radius: 50px 15px 15px 50px;
  /* box-shadow: 0 0 100px var(--brand-color) inset; */
}

main .info h1 {
  color: #ffffff;
  font-size: 50px;
}


main .contact .basic {
  display: flex;
  gap: 15px;
}

main .contact .basic > * {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background: #101010;
  border-radius: 15px;
}

main .contact .people {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

main .contact .people p {
  background: #101010;
  padding: 15px;
  border-radius: 15px;
  font-size: 16px;
}

main .contact .people span {
  color: #10f7ff;
}


@media (max-width: 700px) {
  header {
    padding-right: 5px;
  }

  header .menu {
    display: none;
  }

  header .logo,
  header .join {
    width: max-content;
  }

  header .join .button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: var(--brand-color);
    border-radius: 50px 25px 25px 50px;
    padding: 0 15px 0 18px;
    color: black;
  }
}