body{
    font-family: "Libre Baskerville", serif;
    background: url('/background.jpeg') no-repeat center/cover;
    margin: 0;
    height: 100vh;
    color: white;
}

#roddyricchesbox{
    width: 85%;
    left: 7.5%;
    height: 100%;
    position: fixed;
    padding: 0;
    margin: 0%;
    top: 0;
    z-index: 9998;
}
#left{
    top: 75%;
    left: 13%;
    transform: translate(-50%, -55%);
    width: 30%;
    height: 50%;
    position: absolute;
    text-align: center;
}
#right{
    top: 75%;
    right: -2%;
    transform: translate(0, -55%);
    width: 30%;
    height: 50%;
    position: absolute;
    text-align: center;
}
#profile-pic{
    width: 180px;
    height: 180px;
    border-radius: 100%;
}
.content{
  top: -70%;
  transform: translate(0, -55%);
  position: sticky;
}
button{
    background-color: #1a1a1a00;
    height: 50px;
    outline: none;
    border: solid 2px #3b3b3b;
    color: white;
    font-family: "Libre Baskerville", sans-serif;
    font-size: 1.2em;
    border-radius: 15px;
    transition: all ease-in-out .15s;
    cursor: pointer;
    margin: 10px;
    font-size: 1.2em;
    backdrop-filter: blur(20px);
  }
  button:hover{
    background-color: #2a996e;
    border: solid 2px #00ff9d;
    box-shadow: 0 0 10px #00ff9d, 0 0 20px #00ff9d, 0 0 30px #00ff9d;
  }
  button:active{
    scale: 0.8;
  }
  button:disabled{
    cursor: url(/stuff/icons/pointer.png), pointer!important;
    background-color: #0e0e0e;
    border: solid 5px #292929;
    scale: 1;
    box-shadow: 0 0 0px #000;
  }
    #lowtaperfade{
    width: 100%;
    height: 100%;
    background: linear-gradient(#0c0c0cbd);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    left: 0;
    position: fixed;
    top: 0px;
    z-index:2;
  }
  .iconlinks{
    width: 35px;
    height: 35px;
    transition: ease .2s;
  }
  .iconlinks:hover{
    cursor: pointer;
    scale: 1.2;
  }
  .enter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  z-index: 9999;
  transition: all 0.3s ease;
}

.enter-button {
  top: 50%;
  left: 50%;
  font-size: 24px;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enter-button:hover {
  text-shadow: 0 0 10px #fff;
}