.fuzzy-bubbles-regular {
  font-family: "Fuzzy Bubbles", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
    background-color: beige;
    font-family: 'Fuzzy Bubbles', cursive;
}


 .center {
  text-align: center;
  border: 100px solid green;
}

div.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  border: 3px solid #73AD21;
}

.topright {
  position: fixed;
  top: 8px;
  right: 16px;
  font-size: 18px;
}

.topleft {
  position: fixed;
  top: 8px;
  left: 16px;
  font-size: 18px;
}

.homeheader {
  position: absolute;
  left: 900px;
  top: 200px;
  line-height: 0.5;
  scale: 2.75;
}

.homeheadersize {
  height: 50px;
  width: 50px;
  background-color: red;
  scale: 5;
}



.big-button {
  display: inline-block;
  font-size: 18px;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  position: absolute;
}

.home-button {
  display: inline-block;
  font-size: 18px;
  padding: 1px ;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  position: absolute;
}

.middlebutton {
left: 900px;
  top: 400px;
}

.leftbutton {
left: 500px;
  top: 400px;
}

.middleleftbutton {
left: 700px;
  top: 400px;
}

.rightbutton {
left: 1300px;
  top: 400px;
}

.middlerightbutton {
left: 1100px;
  top: 400px;
}

.zoom {
  transition: transform 0.3s ease-in-out, background-color 0.9s ease-out;
}

.zoom:hover {
  transform: scale(1.5);
  background-color: yellow;
  transition: transform 0.3s ease-in-out, background-color 0.01s ease-in;
}



.izoom {
  transition: transform 0.3s ease-in-out, background-color 0.9s ease-out;
}

.izoom:hover {
  transform: scale(1.5);
  transition: transform 0.3s ease-in-out, background-color 0.01s ease-in;
}








.button-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 450px;
  flex-wrap: wrap;
}


.container {
  position: relative;
  width: 200px;
}


.image, .container img {
  display: block;
  width: 200px;
  height: auto;
}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 200px;
  width: 200px;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #008CBA;
  border-radius: 15px;
}

.container:hover .overlay {
  opacity: 1;
}


.text {
  color: White;
  font-size: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}


.izoom {
  transition: transform 0.3s ease-in-out;
}

.izoom:hover {
  transform: scale(1.5);
}


a.container {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.parent {
  display: flex; 
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.child {
  width: 800px;
  height: 800px;
  background-color: lightblue;
  padding: 20px; /* or whatever spacing you like */
  box-sizing: border-box; /* ensures padding doesn't increase the size */
}





.pageti {
  width: 50%;                  
  margin: 10px auto;           
  padding: 10px 15px;
  background-color: lightpink;
  text-align: center;
  box-sizing: border-box;
  
}



.lparent {
  display: flex; 
  justify-content: flex-start; /* Align to the left */
  align-items: center;
  height: 100vh;
}

.lchild {
  width: 200px;
  height: 800px;
  background-color: lightgreen;
  padding: 20px;
  box-sizing: border-box;
  margin-left: 40px;
  position: absolute;
  top: 180px;
}

.rparent {
  display: flex; 
  justify-content: flex-start; /* Align to the left */
  align-items: center;
  height: 100vh;
}

.rchild {
  width: 200px;
  height: 800px;
  background-color: lightcoral;
  padding: 20px;
  box-sizing: border-box;
  margin-right: 40px;
  position: absolute;
  top: 180px;
  left: 1660px;
}




