* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@media screen and (min-width: 768px) {
    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100dvh;
        margin: 0;
        background-color: #f4f4f4;
    }

    .title {
        font-size: 5rem;
        margin-bottom: 4vh;
        text-align: center;
        font-family: "Big Shoulders", sans-serif !important;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
    }

    .progress-container {
        width: 95%;
        background-color: #ddd;
        border-radius: 20px;
        overflow: hidden;
    }

    .progress-bar {
        height: 30px;
        width: 0;
        font-size: 1rem;
        background-color: aqua;
        text-align: center;
        line-height: 30px;
        color: white;
        transition: width 0.5s;
    }

    .gallery {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    .scroto-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-right: 3vw;

    }

    .img-container {
        margin-top: 4vh;
        overflow: hidden;
        width: 16vw;
        height: 300px;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        background-image: url("../img/fallback.png");
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #f4f4f4;
    }

    .title {
        font-size: 2.5rem;
        margin-bottom: 4vh;
        margin-top: 3vh;
        text-align: center;
        font-family: "Big Shoulders", sans-serif !important;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
    }

    .gallery {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .scroto-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 8vh;
    }

    .progress-container {
        width: 95%;
        background-color: #ddd;
        border-radius: 20px;
        overflow: hidden;
    }

    .progress-bar {
        height: 30px;
        width: 0;
        font-size: 1rem;
        background-color: aqua;
        text-align: center;
        line-height: 30px;
        color: white;
        transition: width 0.5s;
    }

    .img-container {
        margin-top: 4vh;
        overflow: hidden;
        width: 80vw;
        height: 50vh;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        background-image: url("../img/fallback.png");
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}