
html, body {
  width: 100%;
  height:100%;
  margin: 0;
  padding: 0;
 
}

body {
    background: #ffffff;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



p { text-shadow: 1px 1px #cccccc; font-size: 17px; color: #000000; line-height: 1.8; }


.hv {
position: relative;
height: 550px; /* or any desired height */
}

.hvcenter {
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* START NAVIGATION */

.navbar {
  width: 100%;
  background: #333333;
  position: sticky;
  top: 0;
  overflow: hidden;
  z-index:99;
  margin: 0;
}

.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  background-color: #000;
}

.active {
  background-color: #e74c3c;
}

@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
} 

/* END NAVIGATION */

 
.footer {
  position: sticky;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: #333333;
  color: #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
}  

.footer a {
  color: white;
  text-decoration: underline;
  font-size: 17px;
}

.footer a:hover {
  color: #ffff00;
}


/* START CONTACT FORM */

input {
    background-color: purple;
    color: white;
    width: 60%;
    padding: 10px;
    border-radius: 5px;
    border-color: #cccccc;
    box-sizing: border-box;
}
input:focus {
    background-color: #0F52BA;
}
input:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.94);
}

button[type="submit"] {
    background-color: purple;
    width: 150px;
    display: block;
    margin: 0px auto;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
    font-family: "Courier New", Courier, monospace;
    color: white;
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: indigo;
}

input::placeholder {
  color: white;
  opacity: 0.5;
  font-weight: bold;
}
textarea::placeholder {
  color: white;
  opacity: 0.5;
  font-weight: bold;
}
textarea:focus {
    background-color: #0F52BA;
}
textarea:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.94);
}
textarea {
    background-color: purple;
    color: white;
    width: 60%;
    height: 250px;
    padding: 10px;
    border-radius: 5px;
    border-color: #cccccc;
    box-sizing: border-box;
}

/* END CONTACT FORM */


/* START IMDB BUTTON */
.button-32 {
  background-color: #fff000;
  border-radius: 12px;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  padding: 10px 15px;
  text-align: center;
  transition: 200ms;
  width: 200px;
  box-sizing: border-box;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-32:not(:disabled):hover,
.button-32:not(:disabled):focus {
  outline: 0;
  background: #f4e603;
  box-shadow: 0 0 0 2px rgba(0,0,0,.2), 0 3px 8px 0 rgba(0,0,0,.15);
}

.button-32:disabled {
  filter: saturate(0.2) opacity(0.5);
  -webkit-filter: saturate(0.2) opacity(0.5);
  cursor: not-allowed;
}

/* END IMDB BUTTON */


/* START IMAGE SHAKE */

    .specific-img {
      max-width: 400px; 
      padding: 25px; 
      height: auto;
    }

    .specific-img:hover {
    animation: shake 0.5s;
    animation-iteration-count: infinite;
    }
    @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
    }
    .animated-bg {
    animation: moveBackground 10s linear infinite;
    }
    @keyframes moveBackground {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
    }
    
/* END IMAGE SHAKE */


/* START IMAGE CAROUSEL */

/* body{
  margin:0;
  height:100vh;
  display:grid;
  place-items:center;
  background-color:#010101;
} */

.gallery{
  position: relative;
  width: 205px;
  height: 300px;
  transform-style:preserve-3d;
  animation:rotate 55s linear infinite;
  place-items:center;
  margin-top: 2%;
  margin-bottom: 20%;
  top: 50%;
  display: grid;
  justify-content: center;
  align-items: center;
}

@keyframes rotate{
  from{
    transform:perspective(5000px) rotateY(0deg);
  }
  
  to{
    transform:perspective(5000px) rotateY(360deg);
  }
}

.gallery span{
  position:absolute;
  width:100%;
  height:100%;
  transform-origin:center;
  transform-style:preserve-3d;
  transform:rotateY(calc(var(--i) * 45deg)) translateZ(300px);
}

.gallery span img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* END IMAGE CAROUSEL */


/* START IMAGE GALLERY */

div.gallery2 {
  margin: 5px;
  border: 1px solid #111111;
  float: left;
  text-align: center;
  width: 150px;
  background: #333333;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2), 0 5px 10px 0 rgba(0,0,0,.15);
}

div.gallery2:hover {
  border: 1px solid #ffffff;
  transform: scale(1.2); 
}

div.gallery2 img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

/* END IMAGE GALLERY */



.box {
  background-color: rgba(0, 0, 0, 0.5); /* 50% opacity background */
  color: #ffffff; /* Non-transparent text */
  opacity: 0.8; /* Optional: for additional transparency */
  padding: 20px;
}
 
.box2 {
  background-color: rgba(0, 0, 0, 0.5); /* 50% opacity background */
  color: #ffffff; /* Non-transparent text */
  opacity: 0.8; /* Optional: for additional transparency */
  padding: 5%;
}

.box3 {
  background-color: rgba(0, 0, 0, 0.5); /* 50% opacity background */
  color: #ffffff; /* Non-transparent text */
  opacity: 0.8; /* Optional: for additional transparency */
  padding: 5%;
}

.box3 p {
  text-shadow: 1px 1px #111111; 
  font-size: 17px; 
  color: #ffffff; 
  width: 90%; 
  margin-bottom: 5%; 
  line-height: 1.8;
  text-align: center;
}

@-webkit-keyframes typing { from { width: 0; } }
@-webkit-keyframes blink-caret { 50% { border-color: transparent; } }

h1 { 
	font-family: "Bowlby One SC", sans-serif;
  font-weight: 100%;
  font-style: normal;
	font-size: 30px;
	color: #000000;
	text-align: center;
	text-shadow: 1px 1px 2px #fefefe, 0 0 1px #fefefe, 0 0 1px #fefefe;
	
}

.tallboy {
width: 85%; 
margin: auto; 
padding-left: 2%; 
text-align: center; 
place-items:center;
justify-content: center; 
height: 950vh;
display: table;
display: inline-block;
}

.bowlby-one-sc-regular {
  font-family: "Bowlby One SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}