@font-face {
  font-family: elven;
  src: url(./fonts/ElficCaslin-Zo1J.ttf);
}

@font-face {
  font-family: elvencommon;
  src: url(./fonts/Elvencommonspeak-0WXz.ttf);
}
html {
  height: 100vh;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: black;
  text-decoration: none;
  
}

.bodycontainer {
  width: 100%;
  height: 60vh;
  background-color: black;
  position: relative;
}

.headerr {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  width: 100%;
  margin-top: 5vh;
  margin-bottom: 0;
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c1daf1;
  margin-top: 1vh;
  width: 60vw;
  padding: 10px;
  height: 10vh;
  font-family: elvencommon;
  font-size: 130px;
  font-weight: 100;
  text-shadow: 0 0 5px #edf2bb, 0 0 10px #f1ffab, 0 0 20px #92a1e9;
}

.allMain {
  background-color: rgb(0, 0, 0);
}

.moria {
  height: 55vh;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10vh;
}

img {
  height: 55vh;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.hiddenbuttonsbig {
  width: 100%;

  display: flex;
  justify-content: space-evenly;

  background: transparent;
}

.buttons {
  font-size: 50px;
  font-weight: bold;
  font-family: elvencommon;
  cursor: pointer;
  color: yellow;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 30vh;
}

.highlight {
  animation: highlightAnimation 0.5s ease-in-out;
  opacity: 1 !important;
  pointer-events: all;
}

@keyframes highlightAnimation {
  0% {
    opacity: 1;
  }
  100% {
    background-color: transparent;
    opacity: 0;
  }
}
.header {
  width: 100%;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
  height: 7.5vh;
}

.headerin {
  width: 80%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7vh;
  margin: 0 auto;
}

.headerin img {
  height: 5vh;
  width: 50px;
  border-radius: 5px;
  border: solid #c1daf1 1px;
}

.marka {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 9px 7px 0px rgb(0 0 0 / 10%);
  text-decoration: none;
}
.marka a {
  font-size: 35px;
  font-weight: bold;
  color: #c1daf1;
  text-shadow: 0 0 5px #edf2bb, 0 0 10px #f1ffab, 0 0 20px #92a1e9;
  text-decoration: none;
  font-family: elvencommon;
}



.headersol {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 500px;
  gap: 20px;
  margin-left: 0;
}
.headerbuttons a {
  height: 5vh;
  width: 150px;
  font-size: 20px;
  background-color: #ffffff12;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  border: 3px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-shadow: 0 0 5px #edf2bb, 0 0 10px #f1ffab, 0 0 20px #92a1e9;
}
.headerbuttons select {
  text-align: center;
  height: 5vh;
  width: 150px;
  font-size: 20px;
  background-color: #ffffff12;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  border: 3px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-shadow: 0 0 5px #edf2bb, 0 0 10px #f1ffab, 0 0 20px #92a1e9;
}
.headerbuttons select option {
  background-color: rgb(0, 0, 0);
  font-size: 20px;
  padding: 5px;
  color: #f1ffab;
  text-shadow: 0 0 5px #edf2bb, 0 0 10px #f1ffab, 0 0 20px #92a1e9;
}
.headerbuttons select:focus option {
  background-color: #444444; /* Updated hover background color */
  color: #c1daf1; /* Updated text color for better contrast */
}

.back-to-portfolio {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #1f242d;
  color: #78d9f9;
  padding: 14px 24px;
  border-radius: 12px;
  border: 2px solid #78d9f9;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  z-index: 999;
  box-shadow: 0 0 10px rgba(120, 217, 249, 0.5);
  transition: all 0.3s ease;
}

.back-to-portfolio:hover {
  background-color: #78d9f9;
  color: #1f242d;
  box-shadow: 0 0 14px #78d9f9;
}
