* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: #f2f6fa;
    color: #4882d3;
}
p {
    border: 2px solid #4882d3;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
}
.centered-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
    text-align: center;
}

.centered-section h1 {
    margin-bottom: 20px;
}

.centered-section p {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .centered-section {
        padding: 20px 12px;
    }
    .centered-section p {
        max-width: 100%;
    }
}
nav {
    position: relative;
    padding-top: 10px;
    text-align: center;
    color: #70A9F7;
    font-weight: bold;
    background-color: #fafbfc;
    padding-bottom: 10px;
}

    nav ul {
        display: flex;
        gap: 50px;
        justify-content: center;
        align-items: center;
        font-family: sans-serif;
        font-size: 20px;
        list-style: none;
    }

    nav li {
        cursor: pointer;
        -webkit-text-decoration: inherit;
        text-decoration: inherit;
    }

    nav img {
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        height: 24px;
    }

.anav {
    text-decoration: none;
    color: #70A9F7;
}

    .anav:hover {
        text-decoration: underline;
    }