:root {
    --blue: #003D71;
    --blue50: rgb(1, 83, 155);
    --white: #ffffff;
    --pastel: #e8e7e4;
    --black: #293B4B;
    --gradient: linear-gradient(0deg, #F0E3A8 0%, #F2F1EC 100%) no-repeat;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: 'Roboto', sans-serif;

}

body {
    overflow-x: hidden;
    margin: 0;
    background: var(--gradient);
    color: var(--black);
}

main {
    padding-block: 24px;
    min-height: 100dvh;
    width: 694px;
    margin: 0 auto;
    max-width: calc(100% - 30px);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;

}

.hero-img {
    width: 120px;
}

.hero-title, .hero-lead {
    text-align: center;
    color: var(--black);
}

.hero-lead {
    font-size: 16px;
    line-height: 24px;
}

.hero-title {
    font-size: 24px;
    
    font-weight: 700;
}

.comment-card {
    display: block;
    border: 1px solid var(--pastel);
    background-color: var(--white);
    border-radius: 16px;
    padding: 24px 16px;
    margin-block: 24px;
}

.comment-card-text {
    border-bottom: 1px solid var(--pastel);
    margin-bottom: 24px;
    padding-bottom: 24px;
}

#comment-card-text-content {
    font-size: 18px;
}

#comment-card-generate-comment {

    border: 0;
    background: transparent;
    margin: 0;
    cursor: pointer;

    font-size: 16px;
    font-weight: 700;
    width: 100%;
    color: var(--white);
    background-color: var(--blue);
    padding: 0 24px;
    border-radius: 8px;
    transition: background-color 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
}

#comment-card-generate-comment:hover {
    background-color: var(--blue50);
}


footer {
    display: block;
    background-color: var(--blue);
    height: 264px;
}
