body {
    background-color: #282828;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

@media (max-width: 768px) {

    .layout {
        display: none;
    }

    .layout-m {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .menu {
        height: 100%;
        width: 80%;
    }

    .menu-item {
        font-weight: bold;
        margin-bottom: 10px;
        padding: 4px;
        border: 2px solid white;
        border-radius: 6px;
        color:white;
        text-align: center;
    }

    .menu-item:hover {
        color: #FF4B4B;
        border: 2px solid #FF4B4B;
    }

    .container {
        margin: 5%;
    }
    
    .header {
        font-size: 25px;
        margin-top: 5%;
        font-weight: bold;
    }

    .content {
        margin-top: 20px;
        line-height: 20px;
    }

}

@media (min-width: 769px) {

    .layout-m {
        display: none;
    }

    .layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .solutions-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align:center;
    }

    .solution-menu-item {
        width: 50%;
        padding: 10px;
        border: 2px solid white;
        margin-top: 20px;
        border-radius: 10px;
        font-weight: bold;
        color:white;
    }

    .solution-menu-item:hover {
        color: #FF4B4B;
        border: 2px solid #FF4B4B;
    }

    .container {
        margin: 5%;
    }
    
    .header {
        font-size: 25px;
        margin-top: 5%;
        font-weight: bold;
    }

    .content {
        margin-top: 20px;
        line-height: 20px;
    }

}
