body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url('./assets/bg.png') no-repeat center center;
    background-size: cover;
    position: relative;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.5);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

h1 {
    margin: 10px 0 5px;
    font-size: 24px;
}

p {
    font-size: 16px;
    font-style: italic;
    opacity: 0.8;
}
