﻿* {
    margin: 0;
    padding: 0;
}

html,
body {
    background-image: linear-gradient(to bottom right, #FDCC00, #FF9888);
    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;
}

#cover-container {
  background-color: #FBFBFB;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.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: #8775ff;
    background-image: url('../images/viber_logo.png');
    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: #8775ff;
    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: #8775ff;
    width: 100%;
    height: 100%;
}

@media (min-width: 900px) {
    #row2col1 {
        font-size: 1.8vw;
    }

    #row2col3 {
        font-size: 1.8vw;
    }
}