body {
    font-family: "Poppins", arial, sans-serif;
    color: #555555;
    background-color: dimgrey;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.container {
    width: 60%
}

.accordion {
    background-color: #eee;
    color: #444;
    border-radius: 16px 16px 0 0;
    cursor: pointer;
    padding: 18px;
    margin: 16px 16px 0;
    width: 100%;
    height: 60px;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: center;
}

.active, .accordion:hover {
    background-color: #ccc;
}

.panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-left: 16px;
    margin-right: -16px;
}

.panel > img {
    width: 100%;
}

#one {
    background-image: url("./images/1.jpg");
}

#two {
    background-image: url("./images/2.jpg");
}

#three {
    background-image: url("./images/3.jpg");
}

#four {
    background-image: url("./images/4.jpg");
}

#five {
    background-image: url("./images/5.jpg");
}

#six {
    background-image: url("./images/6.jpg");
}

#seven {
    background-image: url("./images/7.jpg");
}

#eight {
    background-image: url("./images/8.jpg");
}

#nine {
    background-image: url("./images/9.jpg");
}

#ten {
    background-image: url("./images/10.jpg");
}

h1 {
    display: block;
    text-align: center;
}
