
.button {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 60px;
    margin-left: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: gray;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: "Lucida Handwriting";
    transition: background-color 0.4s, font-size 0.4s;

}
.button:hover {
    background-color: black;
    font-size: x-large;
}
.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    }
.button-container > div {
    flex: 0 1 auto;
}

body {
    background-image: url("https://wallpapers.com/images/hd/black-and-white-abstract-2560-x-1600-bkhbp5pnbve2rlis.jpg");
}
#title1 {
    color: white;
    text-align: center;
    border-radius: 10px;
    border-color: white;
    font-family: "Lucida Handwriting";

}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}
