:root {
    --color1: #01204E;
    --color2: #028391;
    --color3: #F6DCAC;
    --color4: #FEAE6F;
}
body {
    margin: 0;
    padding: 0;
}

.poetsen-one-regular {
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.title {
    text-align: center;
    
    color: var(--color3);
}

.wrap {
    background-color: var(--color1);
    padding: 10px 50px;
}

h3 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #028391;
    font-size: 30px;
}

img {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Add box shadow */
}
.c {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}
main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
h3 {
    text-align: center;
}
.thing {
    background-color: #F6DCAC;
}
.thing2 {
    background-color: #FEAE6F;
}
@media (max-width: 1000px) {
    main {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    main {
        grid-template-columns: 1fr;
    }
}