/* Style Settings */
@font-face {
  font-family: 'Atmospheric';
  src: url('/assets/fonts/aAtmospheric.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Rubik';
  src: url('/assets/fonts/Rubik-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/Lato-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --transition-time: 1s;
  --transition-color: rgba(150, 100, 80, 1);
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  background-color: #333;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Ensure full height */
}

#userPhoto {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 10px auto;
  display: block;
  position: relative;
  overflow: hidden;
  animation: glowUserPhoto 3s linear infinite; /* Apply the modified glowUserPhoto animation */
}


#userName {
  color: #fff;
  text-align: center;
  text-decoration: none;
}

#userName h1 {
  font-family: 'Atmospheric', sans-serif;
  font-size: 2rem;
  font-weight: bolder;
  letter-spacing: 0rem;
  margin: 0;
}

#userName p {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-top: 1px;
  text-transform: none;
}


i.fa {
  margin-right: 0;
}


.link {
  display: block;
  background-color: rgba(66, 110, 255, 0.2);
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  padding: 15px 100px; /* Adjust the padding to increase the width */
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
  border-radius: 10px;
  

  background-color:#d3d3d3;
  border: 1px solid transparent;
  -webkit-animation: glow var(--transition-time) infinite alternate;
  -webkit-transition: border var(--transition-time) linear,
    box-shadow var(--transition-time) linear;
  -moz-transition: border var(--transition-time) linear,
    box-shadow var(--transition-time) linear;
  transition: border var(--transition-time) linear,
    box-shadow var(--transition-time) linear;
}

.link:hover {
  background-color: rgba(255, 255, 255, 1);
  color: #000000;
  border: none;
}


@keyframes glow {
  0% {
    border-color: transparent;
    -webkit-box-shadow: 0 0 10px transparent;
    -moz-box-shadow: 0 0 10px transparent;
    box-shadow: 0 0 10px transparent;
  }
  20% {
    border-color: #E57373; /* Bright Red */
    -webkit-box-shadow: 0 0 10px #E57373;
    -moz-box-shadow: 0 0 10px #E57373;
    box-shadow: 0 0 10px #E57373;
  }
  40% {
    border-color: #81C784; /* Bright Green */
    -webkit-box-shadow: 0 0 10px #81C784;
    -moz-box-shadow: 0 0 10px #81C784;
    box-shadow: 0 0 10px #81C784;
  }
  60% {
    border-color: #64B5F6; /* Bright Blue */
    -webkit-box-shadow: 0 0 10px #64B5F6;
    -moz-box-shadow: 0 0 10px #64B5F6;
    box-shadow: 0 0 10px #64B5F6;
  }
  80% {
    border-color: #FFD54F; /* Bright Yellow */
    -webkit-box-shadow: 0 0 10px #FFD54F;
    -moz-box-shadow: 0 0 10px #FFD54F;
    box-shadow: 0 0 10px #FFD54F;
  }
  100% {
    border-color: #FF8A65; /* Bright Orange */
    -webkit-box-shadow: 0 0 10px #FF8A65;
    -moz-box-shadow: 0 0 10px #FF8A65;
    box-shadow: 0 0 10px #FF8A65;
  }
}
.link {
  animation: glow 5s infinite; /* Adjust the duration as needed */
}


@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes glowUserPhoto {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0);
  }
}