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 {
        width: 60%;
    }

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

    .logo {
        margin-bottom: 20px;
        padding: 4px;
        text-align: center;
    }

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

    .coming-soon {
        padding-top: 10px;
        text-align: center;
        font-weight: bold;
        font-size: 20px
    }

}

@media (min-width: 769px) {

    .layout-m {
        display: none;
    }

    .menu-item:hover {
        color: #FF4B4B;
    }
    
    .solutions-menu {
        display: flex;
        font-weight: bold;
        font-size: 25px;
        margin-top: 15px;
        justify-content: center;
    }
    
    .solutions-menu > div {
        margin-right: 10%;
        margin-left: 10%;
    }
    
    .solutions-menu-link {
        color:white;
    }
    
    .message {
        font-size: 40px;
        margin-top: 10%;
        font-weight: bold;
        text-align: center;
    }

}
