@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --bg: #18252b; /* 24,37,43 */
  --light_bg: #314751; /* 49,71,81 */
  --accent2: #4a6b7a; /* 74,107,122 */
  --accent: #8a9ca0; /* 138,156,160 */
  --text: #f9b281; /* 249,178,129 */
  --text2: #cddbe1; /* 185, 204, 212*/
  --text3: #e9eff2;
}

body {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
}
/* id's */

#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  filter: brightness(70%);
}

#middle {
  width: 100vw;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  text-align: center;
  justify-content: center;
  padding-bottom: 10vh;
  z-index: 1;
}

#middle h1 {
  font-family: "Unbounded", sans-serif;
  color: var(--text);
  font-size: 100px;
  margin: 0;
}

#middle h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  margin-top: 20px;
  color: var(--text2);
}
#middle table tr td {
  text-align: center;
}

#about,
#work {
  font-family: "Unbounded", sans-serif;
  font-size: 25px;
  color: var(--text2);
}
#about {
  width: 10vw;
  height: 10vw;
  text-align: center;
  transform: rotate(-90deg);
  background: rgba(24, 37, 47, 0.4);
  position: fixed;
  left: 0;
  bottom: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  transition: 0.4s ease-in-out;
  border-radius: 0px 0px 100px 100px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
#about_container {
  overflow-y: auto;
}

#work {
  width: 10vw;
  height: 10vw;
  text-align: center;
  transform: rotate(90deg);
  background: rgba(24, 37, 47, 0.4);
  position: fixed;
  right: 0;
  bottom: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  transition: 0.4s ease-in-out;
  border-radius: 0px 0px 100px 100px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

#work_container {
  overflow-y: scroll;
}

#about:hover,
#work:hover {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background: rgba(24, 37, 47, 0.6);
  color: var(--text);
}

#skills {
  margin-left: 35px;
  margin-top: 3px;
  display: flex;
  justify-content: left;
}

#skills img {
  margin-right: 13px;
}
#used {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
}
#sub_container {
  display: flex;
  justify-content: space-between;
}
#sub_container ul {
  font-family: "Space Grotesk", sans-serif;
  font-size: 50px;
  color: var(--text3);
  max-width: 40%;
}
#sub_container ul li {
  margin: 15px 0px;
}
#sub_container ul li a,
#sub_container ul li a:visited {
  text-decoration: none;
  color: inherit;
}
#sub_container ul li a:hover,
#sub_container ul li a:active {
  color: var(--text);
}
/* classes */
.glasses {
  border-radius: 20px;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); */
  background-color: rgba(24, 37, 47, 0.2);
  box-shadow: 0px 0px 40px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 3px 10px;
}
.social {
  font-size: 27px;
  transition: 0.4s ease-in-out;
  margin: 0 17px;
  text-align: center;
  color: var(--text2);
}
.social:hover {
  color: var(--text);
}
.container {
  width: 95vw;
  height: 95vh;
  padding: 3vh 3vw;
  z-index: 5;
  background: rgba(24, 37, 43, 0.7);
  position: fixed;
  max-height: 100vh;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
}
.container div {
  margin: 20px 0px;
  transition: 0.4s ease-in-out;
}
.container div:hover {
  cursor: pointer;
}
.container section {
  margin: 8vh 0px;
}
.container h1 {
  font-size: 80px;
  font-family: "Unbounded", sans-serif;
  color: var(--text);
}
.container h2 {
  font-size: 50px;
  margin-left: 30px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600px;
  color: var(--text2);
}

.container p {
  font-size: 27px;
  margin-left: 35px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text3);
}
.container i {
  font-size: 40px;
  color: var(--text2);
  transition: 0.4s ease-in-out;
}
.container i:hover {
  color: var(--text);
}

.side_container {
  align-self: flex-end;
  padding: 0vh 1vw;
  z-index: 6;
  overflow-y: auto;
  max-width: 70%;
  min-width: 20%;
  max-height: 100vh;
  display: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-left: 3px solid var(--light_bg);
}
.side_container div {
  margin: 0;
  padding: 0;
}
.side_container i {
  font-size: 30px;
  margin: 0;
  padding: 0;
}
.side_container h2 {
  color: var(--text);
  margin-bottom: 15px;
  text-align: center;
}
.side_container p {
  color: var(--text3);
  font-size: 27px;
}

.info {
  align-items: left;
  font-size: 27px;
  margin: 0;
  max-width: 30%;
}
.btn_one {
  font-size: 15px;
  font-family: "Space Grotesk";
  color: var(--text3);
  background: var(--bg);
  border: 2px solid var(--accent2);
  padding: 8px 40px;
  border-radius: 80px;
  font-weight: bold;
  margin: 2vh 10px;
  transition: 0.4s ease-in-out;
}
.btn_one:hover {
  color: var(--text);
}
.download a,
.download a:visited {
  text-decoration: none;
  color: inherit;
}
.download a:hover,
.download a:active {
  color: var(--text);
}
