   h1, h2 {
        font: Roboto;
        color: rgb(48, 48, 48);
        font-size: medium;

    }

    body {
        background-color: rgb(78, 78, 78);
        margin: 0;
        padding: 0;
        font-family: "Roboto";
        display: flex;
        flex-direction: column;
        width: 100vw;
    }

    .main {
        width: 85%;
        margin: 0 auto 0 auto;
        background-color: rgb(223, 223, 223);
    }

    a {
        color: #2fb0e5;
    }

    .main p, img, video, form, h1, h2{
        width: 100%;
        object-fit: cover;
    }

    .header a{
        max-width: 25%;
        display: flex;
        justify-content: center;
    }

    .headerMenu {
        width: 5%;
        max-width: 40px;

    }

    .headerContact {
        width: 15%;
    }

    .header {
        position: sticky;
        top: 0;
        margin: 0 0 0 0;
        padding-left: 25px;
        background-color: rgba(255, 255, 255, 0.9);
        display: flex;
        flex-direction: row;
        justify-content:space-between;
        align-items:center;
        z-index: 1500;
    }


    .menu {
        color: #2fb0e5;
        margin: 0 0 0 0;
        background-color: rgb(53, 53, 53);
        padding: 25px;
        line-height: 2;
    }

    .menu a{
    text-decoration: none;
    margin: 5px 5px 5px 15px;
    padding: 0px 10px 0px 0px;
    font-weight:bolder;
    display: block;
    color: white;
    }

    .menu a:hover{
    color: #2fb0e5;
    background-color: transparent;
    }

    .section {
    padding: 20px;
    line-height: 1.5;
    color: rgb(43, 43, 43);
    }

    .hr {
        border: none;
        border-top-style: dotted;
        border-top-width: 1px;
        border-top-color: rgb(141, 141, 141);
    }

    .form{
    display: flex;
    flex-direction: column;
    width: 50%;
    min-width: 300px;
    }

    .form input, button{
        width: 75%;
        height: 40px;
    }

    .form textarea{
        height: 200px;
        width: 75%;
    }



    .footer {
        display: block;
        margin: 0;
        font-family: "Roboto";
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        line-height: 2;
        color: rgb(90, 90, 90);
        text-align: center;
    }
