* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #062940;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

nav {
    width: 100%;
    background-color: #062940;
    padding: 10px 0;
}

.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #062940;
    background-color: #df8f05;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
}

.nav-menu a:hover {
    background-color: #612202;
    color: #df8f05;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 70px);
    padding: 20px;
    gap: 20px;
}

.big-box {
    width: 200px;
    height: 200px;
    background-color: #c11d56;
}

.small-boxs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 420px;
    gap: 10px;
    justify-content: center;
}

.box {
    width: 90px;
    height: 90px;
    background-color: #df8f05;
}


@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        flex-direction: row;
        justify-content: center;
        height: auto;
        padding: 40px 20px;
    }

    .big-box {
        margin-right: 20px;
    }

    .small-boxs {
        width: 210px;
    }
}


@media (min-width: 1025px) {
    .container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 70px);
    }

    .big-box {
        margin-right: 50px;
    }

    .small-boxs {
        width: 210px;
    }
}
