body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("pictures/assets/bg.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    opacity: 0.5;
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
}

.image-container {
    position: relative;
    width: 375px;
    height: 500px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #333;
    border-radius: 10px;
}

.magnifier {
    display: none;
    position: absolute;
    border: 3px solid #333;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-repeat: no-repeat;
    background-size: 800px 1000px;
    transform: translate(-50%, -50%);
}

.button-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'handwriting', sans-serif;
}

button img {
    width: 30px;
    height: 30px;
}

button:hover {
    background-color: #0056b3;
}
