body {
    background-color: white;
    font-size: larger;
}

.button {
    background-color: azure;
    border-radius: 7px;
    border: 1px black solid;
    width: 200px;
    height: 45px;
    margin: 10px;
    font-family: cursive;
    font-size: large;
    transition-duration: 0.5s;
}

.button:hover {
    color: white;
    background-color: crimson;
    transition-duration: 0.3s;
}

.title {
    font-family: cursive;
    font-size: 88px;
    text-align: center;
}

.border {
    margin: auto;
    width: 1400px;
    padding: 3px;
    border-radius: 5px;
    box-shadow: 0 0 15px 2px #000;
    margin: 15px auto 15px;
    background-color: beige;
}

.container {
    display: flex;
    width: 1024px;
    margin: 25px auto 25px auto;
    flex-direction: column;
    padding: 10px;
    height: auto;
}

.box1 {
    margin: auto;
    display: block;
    text-align: center;
}

.box2 {
    margin: auto;
    padding-top: 30px;
    display: block;
    text-align: justify;
}

.float {
    float: left;
    padding: 0px 15px 0px 0px;
}

figure {
    margin-left: 0px
}

figcaption {
    text-align: center;
    font-size: medium;
}

div.gallery {
    margin: 5px;
    border: 1px solid #ccc;
    float: left;
    width: 240px;
    font-size: large;
}

div.gallery:hover {
    border: 1px solid #000;
}

div.gallery img {
    width: 100%;
    height: 100%;
}

div.desc {
    background-color: #fff;
    padding: 15px;
    text-align: center;
    height: 200px;
}
#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: red; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
  }
  
  #myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
  }
  