.grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 10px;
    margin: 20px 200px 0px 200px;
}

.grid-maps {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-gap: 10px;
    margin: 20px 200px 0px 200px;
}

.span-col-1{grid-column: span 1 / auto;max-height: 5px;}
.span-col-2{grid-column: span 2 / auto;}

.span-col-3{grid-column: span 3 / auto;}
.span-col-4{grid-column: span 4 / auto;}
.span-col-5{grid-column: span 5 / auto;}

.main{
    text-align: left;
    color: white;
    font-family: itc-benguiat, serif;
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    display: block;
    align-self: center;
}

.maintext{
    padding-top: 20px;
    margin-bottom: 0px;
}

.subtext{
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 25px;
    color:lightgray;
    margin-top: 5px;
}

.nav{
    font-family: omnes-pro, sans-serif;
    font-weight: 500;
    font-style: normal;
    color:white;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 16px;
    white-space: nowrap;
}

ul{
    list-style-type: none;
    padding: 0;
}

ul li{
    display: inline;
    padding-right: 50px;
    color:lightgray;
}

li.button{
    background-color: #F93262;
    border-radius: 5px;
    color: white;
}

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

a:hover{
    color:#F93262;
}

.header{
    background-color: white;
}

.highlight{
    color:#F93262;
}

body{
    background-color: #121416;
}

.footer{
    text-align: center;
    color: lightgray;
    font-family: omnes-pro, sans-serif;
    font-weight: 500;
}

hr{
    border:0;
    margin-bottom:10px;
    width:100%;
    height:1px;
    background-color: dimgray;
}

.logo img{
    height: 50px;
}

.logo{
    white-space: nowrap;
}

.title{
    color: white;
    font-family: itc-benguiat, serif;
    font-size: 30px;
    margin: 10px;
    display: inline-block;
    vertical-align: bottom;
}

.globe img{
    width: 100%;
    align-self: center;
}

.globe{
    align-self: center;
}

.maptext{
    margin-top: 25px;
    margin-bottom: 0px;
    font-size: 40px;
}

.m-subtext{
    font-family: omnes-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color:lightgray;
    margin-top: 5px;
}

.version{
    text-align: left;
    color: white;
    font-family: itc-benguiat, serif;
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    display: flex;
}

.version img{
    width: 25%;
    padding-right: 10px;
    align-self: center;
}

@media screen and (max-width: 576px) {
    .grid {
        margin: 10px 30px 0px 30px;
    }

    .grid-maps {
        margin: 10px 30px 0px 30px;
    }
    .main{
        font-size: 10px;
    }

    .maintext{
        padding-top: 0px;
        margin-bottom: 0px;
    }

    .subtext{
        font-size: 10px;
    }
}


@media screen and (max-width: 768px) { 
    .grid {
        margin: 10px 30px 0px 30px;
    }

    .grid-maps {
        margin: 10px 30px 0px 30px;
    }
    .main{
        font-size: 30px;
    }

    .maintext{
        padding-top: 0px;
        margin-bottom: 0px;
    }

    .subtext{
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) { 
    .grid {
        margin: 10px 30px 0px 30px;
    }

    .grid-maps {
        margin: 10px 30px 0px 30px;
    }
    .main{
        font-size: 40px;
    }

    .maintext{
        padding-top: 0px;
        margin-bottom: 0px;
    }

    .subtext{
        font-size: 20px;
    }}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }