@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--importedFont);
}

:root {
    --purple100: hsl(254, 88%, 90%);
    --purple500: hsl(256, 67%, 59%);
    --yellow100: hsl(31, 66%, 93%);
    --yellow500: hsl(39, 100%, 71%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 7%);
    --importedFont: "DM Sans", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    font-size: 18px;
    background-color: #F5F5F5;
}

#container {
    height: 100%;
    width: 100%;
    display: grid;
    justify-content: center;
    row-gap: 1.5em;
    align-items: center;
    margin: 30px 0px;
}

#container > article {
    height: 100%;
    border-radius: 8px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

article > h3 {
    font-size: 1.4em;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -1px;
}

#reviews {
    text-align: center;
    background-color: var(--purple500);
    color: white;
    padding: 15px 10px;
}

#reviews > h2 {
    font-size: 2.4em;
    padding: 20px 30px 0px 30px;
    line-height: 1em;
    font-weight: 500;
}

h2 > strong {
    font-weight: 500;
}

#reviews strong {
    color: var(--yellow500);
}

#reviews > #stars {
    height: 30px;
    background-image: url(../../assets/images/illustration-five-stars.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    margin: 25px 0px 5px 0px;
}

#reviews > p {
    padding-bottom: 20px;
}

#multipleAccounts {
    background-color: var(--white);
    padding: 15px;
}

#platformsImage {
    height: 80px;
    margin: -5px 0px 10px 0px;
    border-radius: 0px 0px 0px 45px;
    background-image: url(../../assets/images/illustration-multiple-platforms.webp);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0px 4px 2px rgb(240, 240, 240));
}

#posting-schedule {
    background-color: var(--yellow500);
    padding: 15px 15px 0px 15px;
}

#posting-schedule > h3 {
    width: 80%;
}

#p-schedule {
    height: 145px;
    width: 65%;
    margin: 10px 0px 0px 0px;
    background-image: url(../../assets/images/illustration-consistent-schedule.webp);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

#optimize {
    padding: 20px 15px;
    text-align: center;
    background-color: var(--purple100);
}

#schedule-graphic {
    height: 280px;
    margin: 15px 0px;
    border-radius: 10px;
    background-image: url(../../assets/images/illustration-schedule-posts.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

#optimize > p {
    font-weight: 400;
    padding: 0px 20px;
    line-height: 1.1em;
}

#non-stop-content {
    padding: 15px;
    text-align: center;
    background-color: var(--purple500);
    color: white;
}

#followers-graphic {
    height: 180px;
    margin: 10px 30px 25px 30px;
    background-image: url(../../assets/images/illustration-grow-followers.webp);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

#non-stop-content > h3 {
    padding: 0px 50px;
    font-size: 1.5em;
}

#audience-growth {
    padding: 10px 20px 15px 20px;
    background-color: white;
}

#audience-growth > h2 {
    font-weight: 500;
    font-size: 2em;
}

tag {
    position: relative;
    bottom: 3px;
}

#faces {
    height: 70px;
    width: 60%;
    margin: 10px 0px 0px 0px;
    background-image: url(../../assets/images/illustration-audience-growth.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

#create-and-schedule {
    padding: 20px;
    background-color: var(--yellow100)
}

#create-and-schedule > h3 {
    font-size: 1.7em;
    padding: 5px 0px 10px 15px;
    line-height: 0.9em;
    font-weight: 400;
}

#create-and-schedule em {
    color: var(--purple500);
}

#create {
    height: 90px;
    width: 60%;
    margin: 15px 0px 0px 10px;
    background-image: url(../../assets/images/illustration-create-post.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

#write-with-ai {
    background-color: var(--yellow500);
    padding: 15px 20px;
    margin-bottom: 20px;
}

#write-with-ai > h3{
    font-size: 1.7em;
}

#ai-example {
    height: 220px;
    width: 70%;
    margin: 20px 0px 5px 0px;
    background-image: url(../../assets/images/illustration-ai-content.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}