.round-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 255, 0, 0);
  border: 2px solid rgba(0, 255, 0, 0.3);
}

.round-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.content {
  text-align: center;
  height: calc(var(--vh, 1vh) * 100 - 73px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.center-content {
  text-align: center;
  position: relative;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 73px;
  text-align: center;
  line-height: 73px;
  z-index: 1;
}

.footer img {
  transition: all 0.3s ease;
}

.footer img:hover {
  transform: scale(1.15);
}

.footer a {
  -webkit-tap-highlight-color: transparent;
} 

body, html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.background {
  background-image: url('./img/background.png');
  background-size: auto;
  background-repeat: repeat;
  opacity: 0.20;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: blur(0.5px);
}

.click-me-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 50px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  background: transparent;
}

.click-me-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent !important;
  fill: none;
}

.click-me-text text {
  font-family: "Caveat", cursive;
  fill: #0a8816;
  font-size: 48px;
}

a:hover + .click-me-container {
  opacity: 0;
}

a[href="https://pap.uno/cv/"] {
  -webkit-tap-highlight-color: transparent;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-link {
  text-decoration: none;
}
