:root {
    --body-bg-color: #121214;
    --text-color: #E1E1E6;
    --title-color: #04D361;
    --form-color: #A8A8A8;
    --bg-button-color: #8257e5;
}

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

body {
    font-family: Spartan, Work Sans, sans-serif;
    background: #E5E5E5;
}

.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1em;
}

.cards .card {
    flex-basis: 15em;
    flex-grow: 1;
}

.container {
    position: relative;
    width: 90vw;
    height: 48vh;
    margin: .5% auto 0;
}

.left {
    position: absolute;
    width: 100%;
    max-width: 720px;
    height: 780px;
    background: #121214;
}

.logo-rocket {
    position: absolute;
    width: 389px;
    height: 94px;
    left: 30px;
    top: 50px;
}

.apresentation .title {
    color: var(--title-color);
    font-weight: 700;
    margin-top: 1rem;
}

.apresentation {
    position: absolute;
    width: 647px;
    height: 102px;
    left: 36px;
    top: 236px;
}

.apresentation .subtitle {
    color: var(--text-color);
    font-weight: 500;
    margin-top: 1rem;
}

.apresentation .texto {
    color: var(--text-color);
    font-weight: 400;
    margin-top: 1rem;
}

.newsletter {
    position: absolute;
    width: 798px;
    height: 84px;
    left: 2px;
    top: 32px;
    z-index: 10;
}

.newsletter h2 {
    position: absolute;
    width: 133px;
    height: 19px;
    left: 36px;
    top: 388px;
    font-family: 'Spartan';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 138.73%;
    color: #A8A8A8;
}

.newsletter .retangular {
    position: absolute;
    width: 5px;
    height: 48px;
    left: 36px;
    top: 424px;
    background: #04D361;
    z-index: 11;
}

.newsletter input {
    position: absolute;
    width: 798px;
    height: 48px;
    left: 36px;
    top: 424px;
    filter: drop-shadow(4px 10px 15px rgba(0, 0, 0, 0.5));
    padding: 15px;
}

.newsletter button {
    position: absolute;
    background-color: #8257e5;
    width: 48px;
    height: 48px;
    left: 786px;
    top: 424px;
    cursor: pointer;
    border: 1px solid #8257e5;
}

.newsletter .icon-send {
    content: url(./assets/send.svg);
}

.newsletter #responsesend {
    position: absolute;
    left: 46px;
    top: 480px;
    font-size: 8px;
    color: #04D361;
}

.to-read {
    position: absolute;
    width: 196px;
    height: 24px;
    left: 40px;
    top: 532px;
    color: #8257e5;
    cursor: pointer;
}

.to-read {
    text-align: center;
}

.to-read .message {
    text-align: center;
}

.to-read .icon-arrow-right {
    content: url(./assets/arrow-right.svg);
    width: 22px;
}

.logo-rocket img {
    position: absolute;
    width: 389px;
    height: 94px;
    left: 30px;
    top: 50px;
}

.right {
    width: 1275px;
    margin-left: 250px;
}

.right .banner img {
    width: 1175px;
    height: 780px;
    top: 0px;
    left: 10px;
}