body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url(images/5706.jpg) no-repeat center center fixed;
    background-size: cover
}

h1 {
    text-align: center;
    padding: 20px;
    background-color: #6c7a89;
    color: rgba(255, 255, 255, 0.926);
    margin: 0;
    margin-top: 70px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(90px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 15px;
    width: 300px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 10px;
}

.box h2 {
    margin: 10px;
    color: white
}

.box p {
    margin: 10px;
    color: #110101;
    font-size: 14px;
}

.box ul {
    text-align: left;
    padding: 0 15px;
    list-style-type: square;
}

.box li {
    color: #0f0101;
    font-size: 13px;
    margin: 5px 0;
}

.box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.box:hover img {
    transform: scale(1.0);
}

#goTopBtn {
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    z-index: 1000;
}
#goTopBtn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#goTopBtn:hover {
    transform: scale(1.1);
}