body {
    background-color: #d5e1ec;
    font-family: Arial, Helvetica, sans-serif, calibri;
    min-height: 100vh;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

section {
    display: flex;
    gap: 10px;
}
.capitale {
    position: relative;
    width: 90px;
    height: 300px;
    transition: width 1s;
    cursor: pointer;
    border: 2px solid #ecf0f1;
    border-radius: 7px;
    overflow: hidden;
}
.capitale:hover {
    width: 350px;
}
.capitale .info {
    position: absolute;
    top: 300px;
    height: 300px;
    width: 350px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0.596);
    color: #fff;
    padding: 20px 10px;
    box-sizing: border-box;
    font-size: 14px;
}
.capitale:hover .info {
    top: 0;
}
.capitale img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.capitale .info h3 {
    text-transform: uppercase;
}
.capitale .info a {
    font-size: 18px;
    color: #f39c12;
}
.capitale .info a:hover {
    text-decoration: none;
    color: #d35400;
}

@media screen and (max-width: 750px) {
    section {
        flex-direction: column;
    }
    .capitale {
        width: 350px;
    }
    .capitale .info {
        top: 0;
    }
}