html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: unset;
    text-decoration: unset;
}

* {
    box-sizing: border-box;
}

.fold {
    position: fixed;
    right: 0;
}

.fold img {
    height: 140px;
}

.header {
    position: fixed;
    left: 0;
    padding: 10px;
}

.header img {
    height: 70px;
}

.intro {
    display: flex;
    justify-content: center;
    padding-top: 70px;
}

.intro img {
    width: 90%;
    max-width: 410px;
}

.serving {
    text-align: center;
    margin-top: 50px;
    font-size: 40px;
    color: #2B3087;
    font-weight: bold;
}

.services {
    margin-top: 50px;
}

.serviceslist {
    text-align: center;
}

.service {
    margin-top: 20px;
    font-size: 30px;
}

.service i {
    color: #EC212530;
}

.service span {
    color: #2B3087;
    margin-left: 20px;
    margin-right: 20px;
}

.contact {
    margin-top: 60px;
    text-align: center;
}

.contact .invitation {
    text-align: center;
    font-size: 40px;
    color: #2B3087;
    font-weight: bold;
}

.contact .item {
    margin-top: 25px;
    font-size: 30px;
    color: #EC2125;
    font-weight: bold;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.2s, color 0.2s;
}

.contact .item:hover {
    transform: scale(1.1);
    color: #EC2125D0;
}

.footer {
    margin-top: 75px;
    margin-bottom: 25px;
    text-align: center;
    color: lightgray;
}

@media screen and (max-width: 1000px) {
    .serving {
        font-size: 30px;
    }

    .service {
        font-size: 20px;
    }

    .contact .invitation {
        font-size: 30px;
    }

    .contact .item {
        font-size: 20px;
    }
}

@media screen and (max-width: 600px) {
    .serving {
        font-size: 25px;
    }

    .service {
        font-size: 18px;
    }

    .contact .invitation {
        font-size: 25px;
    }

    .contact .item {
        font-size: 18px;
    }
}

@media screen and (max-width: 400px) {
    .serving {
        font-size: 20px;
    }

    .service {
        font-size: 15px;
    }

    .service i {
        display: none;
    }

    .contact .invitation {
        font-size: 20px;
    }

    .contact .item {
        font-size: 15px;
    }
}
