body {
    display: flex;
    flex-direction: column;
    background-image: url(background_contact.png);
    background-position:center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    margin: 0;
}

.menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 15vh;
    background: #282828;
}

.link, .number {
    font-family: "Poppins", sans-serif;
    color: #EAEFF3;
    text-decoration: none;
    font-size: 20px;
    font-weight: 200;
}

.link:hover {
    color: #C11B1C;
    font-weight: 400;
}

.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #C11B1C;
    margin-top: 100px;
    padding: 3px;
}

.contact {
    flex: 1;
    margin-left: 10px;
}

.socials {
    margin: 2px;
}

h1 {
    font-family: "Poppins", sans-serif;
    color: #EAEFF3;
    font-weight: 300;
    text-align: center;
    font-size: 45px;
}

h2 {
    font-family: "Poppins", sans-serif;
    color: #EAEFF3;
    font-weight: 300;
    font-size: 30px;
}

.info {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    flex: 1;
}

p {
    font-family: "Poppins", sans-serif;
    color: #EAEFF3;
    font-weight: 200;
    font-size: 22px;
    margin: 0;
}

h3 {
    font-family: "Poppins", sans-serif;
    color: #EAEFF3;
    font-weight: 200;
    font-size: 30px;
    margin-left: 50px;
}

.input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-top: 7px;
    background: #D9D9D9;
    color: #282828;
    font-size: 16px;
    width: 35%;
    margin-left: 50px;
}

.btn {
    background: #C11B1C;
    border: none;
    padding: 13px;
    width: 400px;
    border-radius: 20px;
    filter: drop-shadow(0 0 5px #C11B1C);
    box-shadow: 0 0 15px #C11B1C;
    font-family: "Poppins", sans-serif;
    color: #EAEFF3;
    font-size: 22px;
    font-weight: 200;
    margin-top: 20px;
}

.btn:hover {
    background: #282828;
    color: #C11B1C;
    filter: none;
    box-shadow: none;
    font-weight: 400;
}

.button {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.mobile {
    display: none;
}

.number:hover {
    color: #EAEFF3;
    font-weight: 400;
}

@media all and (max-width:800px) {
    h1 {
        margin-top: 0;
    }
}

@media all and (max-width:500px) {
    body {
        height: 145vh;
    }

    .mobile {
        display: block;
    }

    .mobile {
        display: flex;
        justify-content:space-between;
        background: #282828;
        height: 70px;
        position: fixed;
        z-index: 1;
        width: 100%;
        margin-top: -5px;
    }

    #menu_toggle {
        opacity: 0;
    }

    .menu_btn {
        display: flex;
        align-items: center;
        top: 8px;
        left: 350px;
        margin-right: 25px;
        width: 26px;
        height: 26px;
        cursor: pointer;
    }

    .menu_btn > span,
    .menu_btn > span::before,
    .menu_btn > span::after {
        display: block;
        position: absolute;
        width: 35px; 
        height: 2px;
        background: #EAEFF3;
    }

    .menu_btn > span::before {
        content: '';
        top: -8px;
    }

    .menu_btn > span::after {
        content: '';
        top: 8px;
    }

    .menu_box {
        display: block;
        position: absolute;
        z-index: 1;
        visibility: hidden;
        margin-top: 30px;
        left: -100%;
        width: 100%;
        height: 900px;
        padding: 80px 0;
        list-style: none;
        text-align: center;
        background: #ECEFF3;
        box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);
    }

    .link {
        display: block;
        padding: 2px 5px;
        font-size: 20px;
        font-weight: 300;
        color: #282828;
    }

    .link:hover, .mail:hover, .phone:hover {
        color: #C11B1C;
    }

    #menu_toggle:checked ~ .menu_btn > span {
        transform: rotate(45deg);
    }

    #menu_toggle:checked ~ .menu_btn > span::before {
        top: 0;
        transform: rotate(0);
    }

    #menu_toggle:checked ~ .menu_btn > span::after {
        top: 0;
        transform: rotate(90deg);
    }

    #menu_toggle:checked ~ .menu_box {
        visibility: visible;
        left: 0;
    }

    .menu_btn > span,
    .menu_btn > span::before,
    .menu_btn > span::after {
        transition-duration: .25s;
    }

    .menu_box {
        transition-duration: .25s;
    }

    .link {
        transition-duration: .25s;
    }

    .menu {
        display: none;
    }

    .logo {
        width: 110px;
    }

    h1 {
        font-size: 28px;
        text-align: center;
        font-weight: 400;
        margin-top: 100px;
    }

    h2 {
        font-size: 25px;
    }

    p {
        font-size: 20px;
    }

    h3 {
        font-size: 22px;
        margin-top: 0px;
    }

    .info {
        margin: 20px;
        width: 80%;
    }

    .mail, .phone {
        color: #EAEFF3;
        padding: 0;
    }

    .input {
        width: 70%;
        margin-right: 30px;
    }

    .btn {
        width: 75%;
        margin-top: 35px;
        padding: 10px;
        border-radius: 10px;
    }
}
