* {
    font-family: 'Montserrat', monospace;
    font-size: large;
    /*background-color: #2a323d;*/
    background-color: rgb(36, 35, 35);
    color: white;
}

.hover {
    transition: 0.45s;
}

.hover:hover {
    opacity: 0.5;
}

.centered {
    /*position: fixed;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

h1 {
    font-size: 3.00em;
}

.rmlink {
    text-decoration: none !important;
}

button {
    font-weight: bold;
    padding: 10px 10px;
    background-color: white !important;
    color:black;
    border: none;
}

section {
    text-align: center;
    -webkit-animation: fadein 2.6s; /* Safari 4+ */
    -moz-animation: fadein 2.6s; /* Fx 5+ */
    -o-animation: fadein 2.6s; /* Opera 12+ */
    animation: fadein 2.6s; /* IE 10+, Fx 29+ */
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

