﻿/* Default */
body {
    background-color: #000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #fff;
}

.main {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.main__image {
    text-align: center;
}

.image {
    max-width: 100%;
}

.message {
    text-transform: uppercase;
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
    font-size: 23px;
}

.message .brand {
    color: #0e76c0;
}

@media (orientation: landscape) {
    .image {
        max-height: 70vh;
    }
}

/* Default WEB */
@media (min-width: 768px) {
    .message {
        font-size: 33px;
    }
}


/* Karamba */
body.karamba {
    background-color: #b3b2b7;
    color: #4c4b4b;
}

.karamba .message .brand {
    color: #c72487;
}

/* Gogawi */
body.gogawi {
    background-color: #fff;
    color: #000;
}

.gogawi .message {
    margin-top: 0;
}

.gogawi .message .brand {
    color: #774598;
}
