@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300&family=Rubik&display=swap');

* {
    box-sizing: border-box;


}

body {
    margin: 0;

    overflow-y: auto;

}

header {
    display: flex;
    width: 100%;
    justify-content: center;

}

main {
    color: white;
    background-color: purple;
    width: 33%;
    margin: 0 auto;
    border-radius: 5px;
}

section {
    background-color: pink;
    padding: 10%;
    margin: 5%;
    border-radius: 5px;

}

section p {
    margin-bottom: 10%;
    padding: 10%;



}

section div {
    border-radius: 5px;
    overflow-y: auto;
    height: 150px;
}



#black {
    display: flex;
    background-color: black;
    font-size: 15px;
    justify-content: center;

}

#green {
    background-color: green;
}

#blue {
    background-color: darkblue;
}

#gold {
    background-color: gold;
}

footer {
    text-align: center;
    border-radius: 5px;
}

img {
    width: 20%;
    padding: 0%;
    margin: 5%;
    border-radius: 5px;
}


/* Media query for screens with a maximum width of 768px (typical smartphones in portrait mode) */
@media (max-width: 768px) {
    main {
        font-size: 20px;
        width: 95%;
    }
}

/* Media query for screens with a maximum width of 576px (smaller smartphones in portrait mode) */
@media (max-width: 576px) {
    body {
        font-size: 20px;
    }
}