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

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style-type: none;
    margin-left: 30px;
}

@media (max-width: 768px) {

    .top-layout {
        display: none;
    }
    
    .top-m-layout {
        display: grid;
        grid-template-rows: 1fr 2fr 2fr;
        height: 100%;
        text-align: center;
    }
    
    .logo {
        grid-row: 1;
    }
    
    .home-m-description {
        grid-row: 2;
        color: white;
    }

    .desc-name {
        font-weight: bold;
        font-size: 25px;
        margin: 10px;
    }

    .desc-title {
        margin: 10px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .home-m-menu {
        grid-row: 3;
    }
    
    .menu-item {
        font-weight: bold;
        border: 2px solid white;
        border-radius: 6px;
        margin-bottom: 10px;
        padding: 4px;
    }

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

    .logo {
        padding: 20px;
    }

}

@media (min-width: 769px) {

    .top-m-layout {
        display: none;
    }

    .top-layout{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .home-bio {
        grid-column: 1;
        display: inline-grid;
        grid-template-rows: 3fr 4fr 4fr;
    }
    
    .home-logo {
        grid-row: 1;
        color: white;
    }
    
    .home-description {
        grid-row: 2;
        color: white;
    }
    
    .home-menu {
        grid-row: 3;
        font-weight: bold;
        color: white;
        margin-top: 30px;
    }

    img {
        height: auto;
        max-width: 100%;
    }

    .logo {
        padding: 10px;
    }

    .menu-item:hover {
        color: #FF4B4B;
    }

    .home-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .home-images-right-container {
        display: grid;
        grid-template-rows: 1fr 50px 1fr;
        justify-content: start;
        align-items: left;
        grid-column: 2;
        grid-row: 1;
    }

    .home-images-left-container {
        display: flex;
        justify-content: center;
        align-items: center;
        grid-column: 1;
        grid-row: 1;
    }
    
    .home-images-dc {
        grid-column: 2;
        grid-row: 1;
    }

    .home-images-madrid {
        grid-column: 1;
        grid-row: 2;
    }

    .home-images-toronto {
        grid-column: 2;
        grid-row: 3;
    }
    
    .home-menu li {
        margin-bottom: 15px;
    }
    
    #name {
        font-size: 25px;
        font-weight: bold;
    }
    
    #title {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 8px;
    }
}


