* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #000;
    font-family: Arial, sans-serif;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.central-div {
    width: 300px;
    height: 436px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.central-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.horizontal-divs {
    display: flex;
    justify-content: center;
    /* gap: 20px;*/
}

.small-div {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.small-div img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.small-div img:hover {
    transform: scale(1.1);
}

.footer {
    text-align: center;
    padding: 0 10px 10px 10px;
    color: #ffffff;
}
