#buttons
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.button
{
    background: #37BEFF;
    color: #FFF;
    display: block;
    box-sizing: border-box;
    padding: .5em;
    border: 0.2em solid #37BEFF;
    border-radius: 0.3rem;
    margin: 1rem;
    text-decoration: none !important;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    text-align: center;
    width: 100%;
    font-size: 24px;
    transition: all 0.15s;
    white-space: nowrap;
}

.button:hover
{
    background: #2F9FD5;
    border-color: #E6E6E6;
    cursor: pointer;
}

@media (orientation: landscape) and (max-width: 800px)
{
    .button
    {
		font-size: 20px !important;
	}
}

@media (orientation: portrait) and (max-width: 600px)
{
	.button
    {
		font-size: 16px !important;
	}
}
