body {
    background: #fffce5;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    text-align: center;
}

nav {
    text-align: right;
    margin-right: 5%;
}

header a {
    color: #be4d6a;
    text-decoration: none;
    margin: 5%;
    font-weight: bold;
}

hr {
    border: #e3be94 solid 1px;
    margin: 10px;
}

main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px;
}

.rating {
    padding: 20px;
    border-bottom: #e3be94 solid 2px;
    text-align: center;
}

.rating ul {
    padding: 0;
}

.rating li {
    list-style: none;
    padding: 5px 0;
    text-align: right;
}

section {
    text-align: center;
}

section h2 {
    color: #be4d6a;
}

section p {
    margin: 20px;
    font-size: 1rem;
    text-align: left;
}

img {
    margin: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 10px black;
    max-width: 100%;
    height: auto;
}

footer {
    text-align: center;
}

@media (min-width: 680px) {
    main {
        grid-template-columns: 1fr 3fr;
    }

    section p{
        text-align:center;
    }

    .rating {
        border-bottom: none;
        border-right: #e3be94 solid 2px;
        text-align: right;
    }

    .rating li {
        text-align: right;
    }
}