body{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    grid-template-areas: 
        "header header"
        "nav nav"
        "main main"
        "footer footer";
}
/* 375px width */

@media (max-width: 400px) {
    p{
        font-size: 32px;
    }

    h2{
        font-size: 48px;
    }
    button{
        font-size: 24px;
    }
    .vertical{
        display: flex;
        justify-content: space-around;
    }
    .vertical img{
        width: 45%;
        height: auto;
    }
    /* body{
        display: grid;
        grid-template-rows: auto 100px auto auto;
        grid-template-areas: 
        "header header"
        "nav nav"
        "main main"
        "footer footer";
    }*/
    img{
        width: 80%;
        height: auto;
    }
}
/* 
.vertical{
    display: flex;
    justify-content: space-around;
}
.vertical img{
    width: 30%;
    height: auto;
} */

.prev-next {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.get-started {
    width: 100%;
    min-height: 150px;
    max-width: 350px;
    font-size: 30px;
}

header {
    grid-area: header;
    background-color: rgb(255, 159, 175);
    color: white;
    padding: 10px 0;
    text-align: center;
}

nav {
    grid-area: nav;
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
}

main {
    grid-area: main;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main.hidden{
    display: none;
}

footer {
    grid-area: footer;
    background-color: rgb(255, 159, 175);
    color: white;
    text-align: center;
    padding: 10px 0;
}

button{
    padding: 10px;
    background-color: rgb(247, 113, 135);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    min-width: 150px;
    min-height: 75px;
}

img{
    border-radius: 15px;
    border: 2px solid #000000;
}

