.contact{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 5px;
    height: 100vh;
}

div{
    background: white;
    text-align: center;
    padding: 0px;
}

div:nth-of-type(odd){
    background: none;
}

.one{
    grid-column: 1 / 2;
    grid-row: 2;
    background-color: white;
    vertical-align: center;
    font-family: 'Roboto', sans-serif;
}

.name{
    font-family: 'Monoton', cursive;
    font-size: 4em;
    padding-top: 10px;
    padding-bottom: 100px;
    color: #f16232;
}

#six{
    bottom: 0;
    width: 100%;
    background-color: #f16232;
    position: fixed;
    z-index: 100;
    font-family: 'Roboto', sans-serif;
}

#map {
    position: relative; 
    top: 0; 
    bottom: 0; 
    width: 100%;
    grid-row: 1 / 4;
}

.map-overlay{
    position: inherit;
    left: 100;
    padding: 0px;
}

a {
outline: none;
text-decoration: none;
padding: 2px 1px 0;
text-emphasis-color: black;
}

a:link {
color: #265301;
}

a:visited {
color: #437A16;
}

a:focus {
border-bottom: 1px solid;
background: #BAE498;
}

a:hover {
border-bottom: 1px solid;
background: white;
}

a:active {
background: #265301;
color: #CDFEAA;
}

@media screen and (max-width: 600px) {
    .contact{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        gap: 5px;
        height: 100vh;
    }

    div{
        background: white;
        text-align: center;
        padding: 0px;
    }

    div:nth-of-type(odd){
        background: none;
    }
    
    .one{
        grid-column: 1 / 3;
        grid-row: 2;
        background-color: white;
        vertical-align: center;
        font-family: 'Roboto', sans-serif;
    }
    
    .name{
        font-family: 'Monoton', cursive;
        font-size: 3em;
        padding-top: 10px;
        padding-bottom: 100px;
        color: #f16232;  
    }
    
    #six{
        bottom: 0;
        width: 100%;
        background-color: #f16232;
        position: fixed;
        z-index: 100;
        font-family: 'Roboto', sans-serif;
    }
    
    #map {
        position: relative; 
        top: 0; 
        bottom: 0; 
        width: 100%;
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .map-overlay{
        position: inherit;
        left: 100;
        padding: 0px;
    }
    
    a {
    outline: none;
    text-decoration: none;
    padding: 2px 1px 0;
    text-emphasis-color: black;
    }
    
    a:link {
    color: #265301;
    }
    
    a:visited {
    color: #437A16;
    }
    
    a:focus {
    border-bottom: 1px solid;
    background: #BAE498;
    }
    
    a:hover {
    border-bottom: 1px solid;
    background: white;
    }
    
    a:active {
    background: #265301;
    color: #CDFEAA;
    }
}