* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: inherit;
    text-decoration: inherit;
    font-family: "DM Sans";
    font-style: normal;
    font-size: 1em;
    font-weight: 400;
    line-height: 1;
}

body {
    min-height: 100vh;
    background-color: #0D2510;
}

/* Main */

.main {
    max-width: 1280px;
    margin: auto;
    padding: 72px 20px;
    display: grid;
    place-items: center;
    gap: 20px;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 26px;
}

.main-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.main-title {
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.main-subtitle {
    color: #B8C5B8;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.main-cta {
    display: flex;
    padding: 10px 16px 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: #FDD144;
    box-shadow: 0px 4px 36px 0px rgba(253, 209, 68, 0.50);
}

.main-cta:hover {
    background: #ffc400;
}

.main-cta-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.main-cta-subtext {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.main-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #C8D2E0;
}

.main-rating-stars {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.main-rating-users {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.main-video {
    max-width: 100%;
    max-height: min(90vh, 800px);
    min-height: 0;
    border-radius: 10px;
}

/* Content */

.content {
    background-color: #0D0D0D;
    color: white;
    padding: 0 20px;
}

.content-heading {
    display: flex;
    padding: 70px 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
}

/* Feature */

.feature {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 0;
    display: grid;
    gap: 40px;
    place-items: center;
    grid-template-columns: 1fr;
}

.feature-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.feature-heading {
    color: #DCDCEF;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
}

.feature-description {
    color: #DCDCEF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.feature-image {
    max-width: 100%;
    max-height: min(90vh, 800px);
    min-height: 0;
    border-radius: 10px;
}
