body {
    margin: 1rem;
    padding: 1rem;
    background-color:rgb(7, 65, 115);
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 3.5rem;
    color:rgb(93, 235, 215);
    text-align: center;
    background-color:rgb(22, 121, 171) ;
    border-radius: 1rem;
    padding: 0.2.5rem;
    font-family: "Jersey 25", sans-serif;
}

.container {
    width: 100%;
    height: 35rem;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
}

h2 {
    font-family: 'Helvetica', sans-serif;
    color: #333;
    text-align: center;
    font-weight: bold;
    margin-bottom: 2rem;
}

ul {
    list-style-type: circle;
}

li {
    margin-bottom: 0.625rem;
    font-size: 1rem;
}

.storagelist {
    list-style-type: square;
    font-size: 0.9rem;
}

h2,ul,li.storagelist {
    font-family: "Oswald", sans-serif;
}

.item1, .item2, .item3 {
    width: 10rem;
    height: 10rem;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
}

.item1 {
    background-color:rgba(197, 255, 149, 0.596);
    width: auto;
    height: auto;
    order: 3;
}

.item2 {
    background-color:rgba(197, 255, 149, 0.596);
    width: auto;
    height: auto;
    order: 1;
}

.item3 {
    background-color:rgba(197, 255, 149, 0.596);
    width: auto;
    height: auto;
    order: 2;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        padding: 0.5rem;
    }
    .container {
        padding: 0.5rem;
    }
    .item1, .item2, .item3 {
        width: 100%;
        margin-bottom: 1rem;
    }
     .item3 iframe {
        width: 100%;
        height: 100%;
        padding-top: 56.25%;
        position: relative;
    }
}