body {
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(darkorange, red, purple);
    font-family: "Montserrat";
    height: 100%;
}

.header {
    margin-top: -32px;
    background-color: #202020;
    color: #eeeeee;
    text-align: center;
}

.header h1 {
    font-size: 300%;
}

.container {
    width: 50%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(50%, 100%);
    color: #202020;
    text-decoration: none;
    vertical-align: middle;
}

.container .links a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin: 10px 0 20px 0;
    font-size: 200%;
    text-decoration: none;
    background-color: #202020;
    color: #aaaaaa;
    border-radius: 6px;
    transition: color 0.5s ease;
}

.container .links a:hover {
    color: #ff1515;
}
