body {
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: white;
    font-family: Arial, sans-serif;
    background-color: rgba(0, 0, 0, 0.5);
}

#background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    transition: background 1s ease-in-out;
}

.background1 {
    background: url('/public/hot/astolfo/image1.jpg') no-repeat center center fixed;
}

.background2 {
    background: url('/public/hot/astolfo/image2.jpg') no-repeat center center fixed;
}

.background3 {
    background: url('/public/hot/astolfo/image3.jpg') no-repeat center center fixed;
}

.background4 {
    background: url('/public/hot/astolfo/image4.jpg') no-repeat center center fixed;
}

h1,
p {
    color: white;
}

a:link,
a:visited {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgb(83, 0, 236);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

a:hover {
    background-color: rgb(153, 97, 255);
    transform: scale(1.1);
}

.content {
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.content img {
    height: 150px;
    margin-bottom: 20px;
}