* {
    font-family: Nunito, 'sans-serif';   
}

h1, h2, h3 {
    font-family: Play, 'serif';
}

body {
    background-color: #B3BED0;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('squidward_dab.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 400px;
}

a {
    color: #3268C7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#header {
    background-color: #122547;
    height:max-content;
}

#header a {
    color: white;
}

#header h1:hover {
    text-decoration: underline;
}

#header h1 {
    text-align: center;
    display: inline-block;
    width: 100%;
}

#content {
    max-width: 900px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

.back-link {
    padding-top: 10px;
    padding-bottom: 10px;
}

.reviews-item {
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-section {
    border: 2px solid #3268C7;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.review-section > h3 {
    color: #3268C7
}

.review-section li {
    font-style: italic;
}

.comments-section {
    white-space: pre-wrap;
}