* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Niramit Regular', sans-serif;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar {
    background-color: #FFE4AA;
    width: 100vw;
    display: flex;
    justify-content: start;
    align-items: center;
}

.navbar img {
    height: 120px;
    margin-right: 20px;
    padding: 10px 20px;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul li {
    padding: 0 15px;
    font-weight: 400;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 18px;
}

footer {
    width: 100vw;
    height: 50vh;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFE4AA;
}

.parrocchia {
    font-size: 25px;
    font-weight: bold;
}


.indirizzo a{
    font-size: 18px;
    margin-top: 10px;
    font-weight: 600;
    color: #333;
}


.content {
    width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

.content img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: bold;
}

.content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
}

@media screen and (max-width: 1024px) {

    .navbar img {
        height: 80px;
    }

    .navbar ul {
        justify-content: space-between;
    }

    .navbar img{
        margin-right: 10px;
        padding: 5px 10px;
    }

    .navbar ul li {
        padding: 0 10px;
    }

    .navbar ul li a{
        font-size: 15px;
    }

    footer .parrocchia {
        font-size: 20px;
    }

    footer .indirizzo {
        font-size: 15px;
    }

    .content{
        width: 80vw;
    }

    .content h1 {
        font-size: 28px;
    }

    .content h2 {
        font-size: 22px;
    }

    .content p {
        font-size: 16px;
    }
}