@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,600;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,700;1,700&display=swap');

:root {
    --white: hsl(0, 0%, 100%);
    --lightpink: hsl(275, 100%, 97%);
    --graypurple: hsl(292, 16%, 49%);
    --darkpurple: hsl(292, 42%, 14%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 100%
}

main {
    display: flex;
    justify-content: center;
    background-color: var(--lightpink);
    background-size: 100% auto;
    background-repeat: no-repeat;
    text-align: left;
    font-family: 'Work Sans', sans-serif;
}

.box-title {
    display: flex;
    align-items: center;
    margin: 0 0 16px 0;
}

h1, h2, img {
    display: inline-block;
}

.star {
    padding: 0 16px 0 0;
    width: 13%;
}

.content {
    width: 350px;
    background-color: var(--white);
    box-shadow: 0px 0px 5px 1px gray;
    border-radius: 20px;
    padding: 32px 20px;
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
    font-size: 16px;
}

p {
    font-weight: 400;
}

section {
    padding: 0 0 16px 0;
}

#first_p, #second_p, #third_p, #fourth_p {
    display: none;
}

footer {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    background-color: var(--lightpink);
}
