html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

html, body {
  background-color: rgb(10, 70, 40);
  margin: 0;
  min-height: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#cvmain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh; 
  border: 8px solid rgb(194, 242, 206);
  border-radius: 26px;
  background-color: #00000000;
  display: none;
  z-index: 5000;
}

#cv_image {
  position: absolute;
  left: -10000px;
  top: 10px;
  width: 1232px;
  height: 920px;
  border: 8px solid rgb(27, 220, 75);
  border-radius: 26px;
  background-color: #1e53bc;
  display: block;
  z-index: 2000;
}

#cv_info {
  position: fixed;
  bottom: 10vmin;
  right: 15vmin;
  width: 20vmin;
  height: 20vmin;
  border: 8px solid rgb(220, 204, 27);
  border-radius: 12px;
  background-color: #dce7b0;
  opacity: 0.5;
  display: block;
  cursor: pointer;
  z-index: 12000;
  animation: pulse 2s ease-in-out 6;
  transform-origin: center center;
}

#cv_zeta {
  position: fixed;
  bottom: 10vmin;
  left: 15vmin;
  width: 20vmin;
  height: 20vmin;
  border: 8px solid rgb(220, 204, 27);
  border-radius: 12px;
  background-color: #dce7b0;
  opacity: 0.5;
  display: none;
  cursor: pointer;
  z-index: 12000;
  animation: pulse 2s ease-in-out 6;
  transform-origin: center center;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

textarea {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 15px;
  box-sizing: border-box;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: clamp(2rem, 2.2vw, 1.125rem);
  line-height: 1.5;
  background-color: #113004;
  border: 10px solid #087a19;
  border-radius: 20px;
  resize: none;
  overflow-x: hidden;
  overflow-y: auto;
  display: none;
  z-index: 10000;
}
