@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);

body {
    background: #f6e1e1;
    color: #999;
    font-family: Roboto;
}

h1 {
    font-weight: bold;
    font-size: 36px;
    color: #E43;
}

.content {
    position: absolute;
    top: 25%;
    width: 100%;
    height: 300px;
    text-align: center;
    margin: 0;
}

.link-list {
    margin: 0;
    padding: 0;
}

.link-list li {
    list-style: none;
    margin: 10px 0;
}

.link-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    justify-content: center;
    column-gap: 2px;
    font-weight: bold;
    text-align: left;
}

.link-list a:hover,
.link-list a:active {
    text-decoration: underline;
}

.link-list svg {
    max-width: 18px;
    max-height: 18px;
}

/* Mobile */
@media only screen and (max-width: 600px) {
    h1 {
        font-size: 24px;
    }
    .link-list a {
        font-size: 13px;
    }
  }