body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: 'Arial', sans-serif;
}

.coral-pixels-regular {
  font-family: "Coral Pixels", serif;
  font-weight: 400;
  font-style: normal;
}

.jacquard-24-regular {
  font-family: "Jacquard 24", system-ui;
  font-weight: 400;
  font-style: normal;
}

.checked {
    color: goldenrod;
}

/* topbar */
.topbar {
    position: sticky;
    top: 0;
    text-align: center;
    background-color: black;
    padding-bottom: 25px;
    z-index: 99;
}

.topbar img {
    margin-top: 20px;
}

.topbar h3 {
    font-family: "Coral Pixels";
    font-size: 50px;
    margin: 0;
}

.topbar a {
    font-family: "Jacquard 24";
    color: white;
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 3px;
    padding-right: 10px;
}

.topbar a:hover {
    color: #e97a01;
}

/* container */
.container {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 900px;
    height: auto;
}

/* reviews */
.review {
    width: 100%;
    height: auto;
    background: url(images/grey%20loop%20background.gif);
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

/* album pic and info */
.review .maininfo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review .maininfo img {
    width: 150px;
    border: 1px solid white;
    margin-right: 15px;
    margin-top: 10px;
}

.review h3 {
    font-family: Georgia;
    font-weight: normal;
    font-size: 15px;
    line-height: 25px;
    margin-top: 30px;
    padding: 0;
}

.review b {
    font-family: "Jacquard 24";
    font-size: 20px;
}

/* review body */
.review p {
    font-family: Georgia;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
}

.review a {
    color: coral
}