@import url('https://fonts.googleapis.com/css?family=Asset');
@import url('https://fonts.googleapis.com/css?family=Rubik Puddles');

.background {
    background-color: rgba(35, 40, 45);
}

h1 {
    color: rgb(255, 210, 0);
    font-size: 10vmax;
    font-family: 'Asset', sans-serif;
    font-weight: bold;
}

h2 {
    font-family: 'Rubik Puddles', sans-serif;
    font-size: 200px;
}

a {
    color: inherit;
    text-decoration: none;
}

/* stole off a website - purp1e */
.fumoup, .trollup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.fumoup-content, .trollup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
}

.close-button-fumoup, .close-button-trollup {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: lightgray;
}

.close-button-fumoup:hover, .close-button-trollup:hover {
    background-color: darkgray;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}