@media (min-width: 800px) and (max-width: 1200px) {
    .homeArguments,
    .missionArgument{ 
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .homeArguments img,
    .missionArgument img{
        width: 500px;
        height: auto;
        border-radius: 10px;
        margin-top: 50px;
    }

    .header .menu-icon {
        display: none;
    }

    .header .menu {
        position: static;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        background-color: transparent;
        align-items: center;
        border: none;
        margin-right: 20px;
    }

    .header .menu li {
        margin: 0 10px;
    }

    .header .menu li a {
        padding: 10px 15px;
        font-size: 1em;
        border: none;
    }

    .header .menu li a:hover {
        background-color: #181818;
        color: rgb(204, 125, 22);
    }
}