body {

background-image: url('background.jpg');
}

html {
overflow: scroll;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 0; /* remove scrollbar space */
background: transparent; /* to make scrollbar invisible */
}
::-webkit-scrollbar-thumb {
background: transparent;
}

h1 {
  text-align: center;
  font-family: kinkie;
  font-size: 75px;
}

.glowtext {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    -webkit-animation: pulsateGlow 1.5s ease-in-out infinite;
    animation: pulsateGlow 1.5s ease-in-out infinite;
}

/* Keyframes for strong pulsating glow */
@keyframes pulsateGlow {
    0% {
        text-shadow:
            0 0 5px #FFC0CB,
            0 0 10px #FFD6E8,
            0 0 15px #FFB6C1,
            0 0 25px #FFE4EC,
            0 0 35px #FFD6E8,
            0 0 50px #FFC0CB;
    }
    50% {
        text-shadow:
            0 0 20px #FFC0CB,
            0 0 40px #FFD6E8,
            0 0 60px #FFB6C1,
            0 0 80px #FFE4EC,
            0 0 100px #FFD6E8,
            0 0 120px #FFC0CB;
    }
    100% {
        text-shadow:
            0 0 5px #FFC0CB,
            0 0 10px #FFD6E8,
            0 0 15px #FFB6C1,
            0 0 25px #FFE4EC,
            0 0 35px #FFD6E8,
            0 0 50px #FFC0CB;
    }
}

@-webkit-keyframes pulsateGlow {
    0% {
        text-shadow:
            0 0 5px #FFC0CB,
            0 0 10px #FFD6E8,
            0 0 15px #FFB6C1,
            0 0 25px #FFE4EC,
            0 0 35px #FFD6E8,
            0 0 50px #FFC0CB;
    }
    50% {
        text-shadow:
            0 0 20px #FFC0CB,
            0 0 40px #FFD6E8,
            0 0 60px #FFB6C1,
            0 0 80px #FFE4EC,
            0 0 100px #FFD6E8,
            0 0 120px #FFC0CB;
    }
    
    100% {
        text-shadow:
            0 0 5px #FFC0CB,
            0 0 10px #FFD6E8,
            0 0 15px #FFB6C1,
            0 0 25px #FFE4EC,
            0 0 35px #FFD6E8,
            0 0 50px #FFC0CB;
    }
}

.entrybox {
text-align: center;
margin: 0 auto;
max-width:550px;
height:600px;
padding: 5px;
position: relative;
top: -10px;
left: -20px;
font-family: rainkiss;
border:3px solid pink;
background:pink;
border-radius:10px;
box-shadow: 0px 0px 10px pink, 0px 0px 10px pink, 0px 0px 10px pink, 0px 0px 10px pink, 0px 0px 14px pink;
color: black;
overflow-y: auto;
z-index: 2;
}

#entrySelect {
  font-family: rainkiss;
  font-size: 16px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 2px solid pink;
  background-color: #ffd6e8;
  color: black;
  cursor: pointer;
}

.dropdowncontainer img{
width: 200px;
height: auto;
position: absolute;
top: 300px;
left: 50px;
z-index: 5;
}

.phonebackground {
  border-radius: 10px;
  width: 160px;
  height: 130px;
  position: absolute;
  top: 350px;
  left: 70px;
  background-color: #F8C7D7;
  background-size: cover;
  z-index: 10;
  overflow-y: auto;
  text-align: center;
}

.entry-menu button {
  background: none;
  border: none;
  padding: 5px 0;
  cursor: pointer;
  font: inherit;
}

.entry-menu button:hover {
  color: hotpink;
}