body {
    background-image: url('royalty_images/index with E logo.webp');
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#hello_guy_and_message_container {
    display: flex;
    gap: 0px;
    position: fixed;
    bottom: 0;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#hello_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#hello_message {
    opacity: 0;
    font-size: 3vh;
    color: #bebebe;
    width: 30vh;
    font-family: "Almendra", serif;
    font-weight: 400; 
    display: flex;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
    border: #fff;
    border-style: outset;
    border-width: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-color: #00000097;
    margin-top: 55px;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.5s;  
}

#logInBtn{  
    opacity: 0;
    background-color: rgb(0, 0, 0);
    font-family: "Almendra", serif;
    color: rgb(211, 211, 211);
    width: 12vh;
    height: 4vh;
    font-size: 3vh;
    margin-top: 10px;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.8s;
}

#hello_guy_container{
    margin-right: 100px;
}

#hello_guy {
    opacity: 0;
    height: 35vh;
    cursor: pointer;
    margin-bottom: 0;
    z-index: 1;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 0.3s;
    transition: 0.3s;
}

#hello_guy:hover {
   
    transform: scale(1.5) translateY(-6vh);
    cursor: pointer;
  
}



#davidSatler {
    font-size: 1.5vh;
    position: fixed;
    bottom: 3px;
    left: 3px;
    text-align: center;
    font-family: 'Mirza', cursive;
    color: rgb(255, 255, 255);
    font-weight: 700;
    transition: transform 0.3s;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    text-shadow: 
        -1px -1px 0 rgb(0, 0, 0),
        1px -1px 0 rgb(0, 0, 0),
        -1px 1px 0 rgb(0, 0, 0),
        1px 1px 0 rgb(0, 0, 0);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}





























































































































/* GLOW ON HOVER CODE --------------------------------------------------------------------------------------- */

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}




#logo{
    margin-top: 20px;
    transition: transform 0.3s;
    opacity: 0; 
    animation: fadeIn 1s ease-in-out forwards; 
    border: #00ffd500;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
}

#logo:hover{
    transform: scale(1.2);
    cursor: pointer;
   
   
}

#hello_guy_container {
    margin-right: 100px;
    position: relative;
    width: 35vh;
    height: 35vh;
}

#hello_guy_gif {
    position: absolute;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
    height: 140%;  /* Adjust this value to make the GIF larger */
    width: auto;
    object-fit: contain;
    cursor: pointer;
    z-index: 1;
    display: none;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

#hello_guy_gif {
    display: none;
}



@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

