/* Global styles */

body {
    background-color: #222;
    color: white;
    font-family: 'Roboto', sans-serif;
}

footer {
	position: fixed;
	bottom: 5px;
	font-size: 16px;
	color: #b9b9b9;
	text-align: center;
	width: 100%;
}

label {
    font-size: 18px;
    display: block;
}

label:first-child {
    margin-top: -0.25%;
}

label:not(:first-child) {
    margin-top: 0.5%;
}

select {
    margin-top: 5px;
    padding: 5px;
    border-radius: 5px;
}

select option {
    text-align: center;
}

/* ID styles */

#container {
    margin-top: 0.5%;
}

#dacoin {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transition: all 0.2s linear;
}

#flipText {
	margin-top: 0;
	font-size: 2.5em;
	text-align: center;
}

#lastFlippedText {
	margin-top: -1%;
	font-size: 1.2em;
	text-align: center;
}

#help {
    margin-top: -0.5%;
    font-style: italic;
    text-align: center;
}

#menuContent {
    display: none;
    width: 60%;
    height: 40%;
    padding: 40px;
    background-color: #444;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.5), 2px 0 2px 2px rgba(0, 0, 0, 0.5);
    text-shadow: 1px 1px 1px #000;
    color: white;
    border-radius: 10px;
    position: absolute;
    top: 2%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.25em;
    z-index: 1000;
}

#menuInnerContent {
    padding-right: 20px;
    height: 100%;
    overflow-y: auto;
}

#result {
    font-weight: bold;
    letter-spacing: 8px;
}

#container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
    #menuContent {
        height: 70%;
    }

    #dacoin {
        width: 65vw;
        height: auto;
    }

    #result {
        display: block;
    }

    #flipText {
        font-size: 3.5em;
    }
    
    #lastFlippedText {
        font-size: 2.5em;
    }

    footer {
        font-size: 1.25em;
        margin-bottom: 15px;
    }
}
