﻿
* {
    color: #5d5d5d;    
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6{
    color:white;
}

body {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    font-family: sans-serif;    
    background-image: url('/Resources/Images/Background/large');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #fff;
}

footer{
    position:absolute;
    bottom:0;
    padding-bottom:10px;
}

.flex-container-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    display: -webkit-flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.flex-container-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;    

    display: -webkit-flex;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

.detail-field{
    padding: 0px 15px 15px 15px;
}

@media only screen and (max-width: 767px) {
    body {
        background-image: url('/Resources/Images/Background/small');
    }
}

@media only screen and (max-width: 1280px) {
    body {
        background-image: url('/Resources/Images/Background/medium');
    }
}
