body {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: larger;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f0f0;
}

main {
    max-width: 700px;
    background-color: white;
    padding: 24px;
}

h2 {
    text-align: center;
    font-size: 48px;
    background-color: #6F8FDF50;
    margin-bottom: 16px;
    margin-top: 0px;
}

h3 {
    /* border-bottom: 1px solid black; */
    margin-top: 48px;
}

h4 {
    font-weight: 200;
}

section {
    margin-bottom: 64px;
    border: 1px solid black;
    border-radius: 8px;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen  and (max-device-width: 700px) {
    main {
        padding: 0px;
    }
}