﻿* {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    font-family: SegoeUI;
}

@font-face {
    font-family: SegoeUI;
    src: url('../fonts/Segoe UI.woff');
}

#main-container {
    background-image: url('../images/mgames-background-white.png');
    background-repeat: repeat;
    display: flex;
    height: 100%;
    align-items: center;
    flex-direction: column;
}

.glife-footer {
    height: 70px;
    width: 100%;
    margin: auto 0 0 0;
    display: grid;
    grid-template-columns: auto 90px auto;
    grid-template-rows: 25px 45px;
}

#row1col2 {
    border-radius: 30px 30px 0 0;
    grid-column: 2;
    grid-row: 1 / span 2;
    background-color: white;
    background-image: url('../images/glife_logo.jpg');
    background-size: 60px 60px;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

#row1col3 {
    text-align: right;
    font-size: 1.5vh;
    color: white;
    grid-column: 3;
    grid-row: 1;
    width: 100%;
    height: 100%;
}

#footer-version {
    padding-right: 2vw;
    font-size: 1.5vh;
    color: white;
}

#row2col1 {
    color: white;
    text-align: right;
    line-height: 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5vw;
    font-weight: 600;
    grid-column: 1;
    grid-row: 2;
    background-color: #3838d1;
    width: 100%;
    height: 100%;
}

#row2col3 {
    color: white;
    line-height: 45px;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5vw;
    font-weight: 600;
    grid-column: 3;
    grid-row: 2;
    background-color: #3838d1;
    width: 100%;
    height: 100%;
}

@media (min-width: 900px) {
    #row2col1 {
        font-size: 1.8vw;
    }

    #row2col3 {
        font-size: 1.8vw;
    }
}