* {
  margin: 0px;
  padding: 0px;
}

:root {
  --none: rgba(0, 0, 0, 0);
  --black: black;
  --black_90_op: rgba(26, 26, 26, 0.9);
  --black_80_op: rgba(26, 26, 26, 0.8);
  --black_70_op: rgba(26, 26, 26, 0.7);
  --black_60_op: rgba(26, 26, 26, 0.6);
  --black_50_op: rgba(26, 26, 26, 0.5);
  --black_40_op: rgba(26, 26, 26, 0.4);
  --black_30_op: rgba(26, 26, 26, 0.3);
  --black_20_op: rgba(26, 26, 26, 0.2);
  --black_10_op: rgba(26, 26, 26, 0.1);
  --black_5_op: rgba(26, 26, 26, 0.05);
  --white: white;
  --white_90_op: rgba(255, 255, 255, 0.9);
  --white_80_op: rgba(255, 255, 255, 0.8);
  --white_70_op: rgba(255, 255, 255, 0.7);
  --white_60_op: rgba(255, 255, 255, 0.6);
  --white_50_op: rgba(255, 255, 255, 0.5);
  --white_40_op: rgba(255, 255, 255, 0.4);
  --white_30_op: rgba(255, 255, 255, 0.3);
  --white_20_op: rgba(255, 255, 255, 0.2);
  --white_10_op: rgba(255, 255, 255, 0.1);
  --white_5_op: rgba(255, 255, 255, 0.05);
  --main: #1467e3;
  --main_90: rgba(20, 103, 227, 0.9);
  --main_80: rgba(20, 103, 227, 0.8);
  --main_70: rgba(20, 103, 227, 0.7);
  --main_60: rgba(20, 103, 227, 0.6);
  --main_50: rgba(20, 103, 227, 0.5);
  --main_40: rgba(20, 103, 227, 0.4);
  --main_30: rgba(20, 103, 227, 0.3);
  --main_20: rgba(20, 103, 227, 0.2);
  --main_10: rgba(20, 103, 227, 0.1);
  --main_05: rgba(20, 103, 227, 0.05);
  --font_size_lgr: 3rem;
  --font_size_lg: 2rem;
  --font_size_md: 1.5rem;
  --font_size_sm: 1rem;
  --font_size_tiny: 0.8rem;
  --font_weight_lg: 700;
  --font_weight_md: 500;
  --font_weight_sm: 300;
}
html {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body {
  overscroll-behavior-y: none;
  overflow-y: scroll;
  scroll-snap-type: y proximity;
  caret-color: var(--main);
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  background-color: var(--black);
}
body::-webkit-scrollbar {
  display: none;
}

#dashboard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
}

#backgroundImage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: blur(0px);
  overflow: hidden;
}
#dashboardContainer {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 28%;
  padding: 2.5% 0px;
}
#header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0vh 0px 2.5vh 0px;
}
.coverWrapper {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 10px;
}
.cover {
  position: absolute;
  height: 400px;
  width: 400px;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 1s ease;
}
#albumCover {
  opacity: 1;
}

#dashboard h1,
h2 {
  color: #e8c865;
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
}
#dashboard h2 {
  font-weight: var(--font_size_sm);
  margin-bottom: 2.5vh;
}
#socialIcons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 5vh;
}
#socialIcons img {
  max-height: 30px;
  width: auto;
  object-fit: contain;
  transition:
    opacity 0.3s,
    transform 0.2s;
  color: #e8c865;
}
#socialIcons img:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* LINKS */
#linksContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
}
.linksList {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 2vh;
  gap: 5px;
}
.linksList p {
  color: var(--white);
  margin-bottom: 1.5vh;
  font-family: "Roboto", sans-serif;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.linkContainer {
  position: relative;
  background: transparent;
  width: 100%;
  height: 6vh;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.linkContainer:nth-child(1) {
  background-color: #e8c865;
}

.linkContainer:nth-child(2):before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white_20_op);
  backdrop-filter: blur(4px);
  z-index: 0;
}

.linkContainer > * {
  position: relative;
  z-index: 1;
}

.linkContainer:hover {
  transition: 0.3s;
  cursor: pointer;
  opacity: 0.8;
}
.linkContainer a {
  text-decoration: none;
  color: #090f18;
}

/* FORM */
#formContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
}
#formContainer p {
  color: #e8c865;
  font-size: var(--font_size_sm);
  font-weight: var(--font_weight_lg);
  margin-bottom: 1vh;
  text-transform: uppercase;
}
#formContainer form {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#formContainer input {
  height: 40px;
  width: 220px;
  border: solid 2px #e8c865;
  border-radius: 5px;
  padding: 0px 10px;
  font-size: var(--font_size_sm);
  background-color: transparent;
  color: #e8c865;
}
#formContainer input::placeholder {
  color: var(--white_50_op);
}
#formContainer input:focus {
  outline: none !important;
  border: 2px solid #2a3e2f !important;
  box-shadow: none !important;
}

#formContainer input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

#formContainer input {
  outline-offset: 0 !important;
}

#formContainer button {
  height: 42px;
  width: 150px;
  border: solid 2px #e8c865;
  border-radius: 5px;
  padding: 0px 5px;
  background-color: #e8c865;
  color: #090f18;
  font-size: var(--font_size_sm);
  font-weight: var(--font_weight_md);
  cursor: pointer;
  transition: 0.3s;
}
#formContainer button:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  #dashboard {
    width: 100vw;
    height: 100vh;
    margin: auto;
  }
  #dashboard h1 {
    font-size: 20px;
  }
  #dashboardContainer {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    padding: 5% 0px;
  }
  .linksList {
    width: 100%;
  }
  .cover {
    height: 100%;
    width: 100%;
    margin-bottom: 10px;
  }

  #formContainer form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  #formContainer input {
    height: 50px;
    width: 90%;
    padding: 0px 5%;
  }
  #formContainer button {
    height: 50px;
    width: 100%;
    margin-bottom: 10vh;
  }
}
