body {
    padding: 10px 50px;
}

h1 {
    color: #2196f3;
}

a {
    color: #e91e63;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    border-bottom: 3px solid #ffeb3b;
}

#content {
    max-width: 768px;
    margin: 0 auto;
}

#issues {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#issues li {
    margin-bottom: 20px;
}

.labels {
    margin: 10px auto;
    margin-top: 0;
}

.label:first-child {
    margin-left: 0;
}

.label {
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 9px;
    padding: 4px 8px;
    margin: 5px;
    border-radius: 3px;
}

#loading {
    width: 75px;
    height: 75px;
    animation: rotation 2s infinite linear;
    background-repeat: no-repeat;
    background-image: url(images/rust-logo.png);
    background-size: contain;
    text-align: center;
    margin: 20px auto;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

h2 {
    border-bottom: 3px solid;
    padding-bottom: 10px;
}

.view-all {
    text-align: center;
    font-style: italic;
    color: #2196f3;
    padding: 10px;
}

.view-all:hover {
    cursor: pointer;
    background-color: #eee;
}

.button {
    display: block;
    background-color: #4caf50;
    color: white;
    font-weight: bold;
    margin: 0 auto;
    padding: 10px 15px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: 300ms;
}

.button:hover {
    background-color: #ffeb3b;
    transform: scale(1.1);
    transition: 300ms;
    color: black;
}
