/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white; /* Combining both body styles */
  font-family: "Arial", Helvetica, sans-serif; /* Applying font-family to body */
  
}


h1 {
  color: white;
}

.button {
  transition-duration: 0.4s;
}

.button:hover {
  background-color:	#FF69B4; 
  color: black;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.margin {
    margin: 20px;
}

 @font-face {
  font-family: comfortaa;
  src: url(comfortaa-variablefont_wght-webfont.woff);
}

div {
  font-family: comfortaa;
}

.banner {
  background-color: #333;
  color: white;
  padding: 10px;
}

.banner a {
  color: white;
  text-decoration: none;
  margin-right: 10px;
}

.banner a:hover {
  text-decoration: underline;
}

h2{
    display: inline;
}

.centerdesi {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
  height: 10%;
  align-items: center;
}

.largebutton{
  height:50px;
  width:150px;
border-radius: 12px;
}
.largebutton {
  transition-duration: 0.4s;
}

.largebutton:hover {
  background-color: #FF69B4;
  color: white;
}

.largebutton:font {
   font-family:comfortaa;
}

@keyframes animatedBorder {
  0% {
    border-color: #FF69B4;
  }
  25% {
    border-color: #FFD700;
  }
  50% {
    border-color: #00FF00;
  }
  75% {
    border-color: #1E90FF;
  }
  100% {
    border-color: #FF6347;
  }
}

.bordered1 {
  border: 5px ridge;
  animation: animatedBorder 5s infinite; /* Adjust timing and iteration as needed */
}


.centerwiz {
   display: flex;
    justify-content: center;
    height: 100%; /* Allow the container to take full height */
    align-items: center;
  }

.bordered2{
  border: 5px solid #FF69B4;
} 


.bordered2:hover {
  border:5px solid #FFC0CB;
}

a/*underscore removal*/ {
    text-decoration: none; 
}

.centercaution {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 3%;
  height: 3%;
}

.smileonhover:hover{
 content: url('/galleryimages/smiledespi');
}


  /*  Rollover image styles  */
.figure {
  position: relative; /* Change from static to relative */
  max-width: 100%;
}

.figure img.Sirv {
  display: block;
  margin: auto; /* Set margin to auto to horizontally center */
  height: 200px; /* Set height and width */
  width: 200px;
  object-fit: contain;
}

.figure img.Sirv.image-hover {
  position: absolute; /* Change from static to absolute */
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.figure:hover img.Sirv.image-hover {
  opacity: 1;
}

.centerwip {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
  height: 10%;
}

.centergeneral {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@font-face {
  font-family: helsinki;
  src: url(helsinki.ttf);
}

.centerarray {
  display: block;
   transform: translateY(-50px);
  margin-right: auto;

}

.centertext {
  display: inline;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}