* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #111;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 15px;
    background-color: #000;
    padding: 10px;
}

.slide{
    display: flex;
    align-items: center;
    flex-direction: column;
}

img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    background-color: #222;
}

p {
    margin-top: 15px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}
