html, body {
    height: 100%;
}

body {
    background: url('../img/triangle.svg') 50% 100px no-repeat;
    text-align: center;
    font-family: monospace;
}

#festival-name {
    display: inline-block;
    border-bottom: 4px solid gray;
    border-top: 4px solid gray;
    margin-top: 160px;
    font-size: 85px;
    text-transform: uppercase;
    color: gray;
    filter: blur(0) contrast(0);
    transition: 0.5s;
}
#festival-name:hover {
    filter: blur(2px) contrast(15000%);
}

p {
    font-size: 20px;
}
a {
    color: #bf1b2c;
    text-decoration: none;
}

.button {
    background: #bf1b2c;
    display: inline-block;
    padding: 0.5em;
    border-radius: 0.1em;
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 400px) {
    #festival-name {
        font-size: 45px;
    }
}
