body {
    font-family: Helvetica, sans-serif;
}

.back-button a {
    text-decoration: none;
    height: 30px;
    width: 100px;
    background-color: #fddede;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    cursor: pointer;
}
.back-button a:hover {
    background-color: #fb9b9b;
}
.back-button a:focus {
    background-color: #fb9b9b;
}

.page-title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 600;
}

.page-link-green {
    width: 90%;
    max-width: 500px;
    background-color: #c6e9c0;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 4px;
    cursor: pointer;
}
.page-link-green:hover {
    background-color: #81d872;
}
.page-link-green:focus {
    background-color: #81d872;
}

.page-link-blue {
    width: 90%;
    max-width: 500px;
    background-color: #cbe1ff;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 4px;
    cursor: pointer;
}
.page-link-blue:hover {
    background-color: #9fc5f5;
}
.page-link-blue:focus {
    background-color: #9fc5f5;
}

.page-link-red {
    width: 90%;
    max-width: 500px;
    background-color: #cbe1ff;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 4px;
    background-color: #fddede;
    cursor: pointer;
}
.page-link-red:hover {
    background-color: #fababa;
}
.page-link-red:focus {
    background-color: #fababa;
}
