﻿@font-face {
    font-family: "Asap";
    src: url("../Content/Fonts/Asap.ttf");
}

/*Fonts sizes at 96dpi small=13px,medium=16px;large=18px,x-large=24px,xx-large=32px*/
* {
    font-family: 'Asap';
}

.main {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.button {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border: hidden;
    border-radius: 5px;
    color: white;
    align-content: center;
    font-size: large;
}

    .button:enabled:hover {
        cursor: pointer;
    }

    .button:disabled {
        color: darkgray;
        background-color: lightgray;
    }

/* Desktop Style */
@media only screen and (min-width: 1200px) {
    .main {
        width: 1200px;
    }

    .mobile {
        display: none;
    }

    .banner {
        font-size: xx-large;
        height: 100px;
    }

    .body {
        width: 600px;
    }
}

/* Mobile Style */
@media only screen and (max-width: 1200px) {
    .main {
        width: 100%;
    }

    .desktop {
        display: none;
    }

    .header {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .banner {
        font-size: x-large;
    }

    .body {
        width: 100%;
    }
}