h1 {
    font-size: 3em;
}

h3 {
    font-size: 1.5em;
}

.wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    background-image: url("/Images/wave-top.svg"), url("/Images/wave-bottom.svg");
    background-repeat: no-repeat;
    background-position: top left, bottom right;
    border-radius: 20px;
    background-color: #7284FA;
    padding: 10%;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    color: white;
    position: relative;
}

@media (max-width: 1800px) {
    .wrapper {
        padding: 48px 48px;
    }
}

@media (max-width: 900px) {
    .wrapper {
        padding: 16px 16px;
    }
}

.content {
    display: flex;
    justify-content: center;
    flex: 1;
}

.features-wrapper {
    display: flex;
    align-items: center;
}

.features {
    padding-left: 0;
    font-weight: bold;
}

.features li {
    list-style-type: none;
    margin-bottom: 12px;
    display: flex;
    font-weight: 500;
    font-size: 22px;
}

@media (max-width: 1700px) {
    .features li{
        font-size: 16px;
    }
}

.features li img {
    margin-right: 16px;
}

.drawn-arrow {
    position: fixed;
    top: 300px;
    left: 800px;
}

@media (max-width: 2300px) {
    .drawn-arrow {
        left: 600px;
    }
}

@media (max-width: 1700px) {
    .drawn-arrow {
        display: none;
    }
}

.rocket-wrapper {
    display: flex;
    align-items: center;
}

.rocket-wrapper img {
    max-width: 80%;
    height: auto;
    margin: 32px;
}

.btn.main-site-link {
    width: 150px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 25px;
    color: #000000;
    font-weight: normal;
    border: 0;
    position: absolute;
    right: 32px;
    bottom: 32px;
}

.btn.main-site-link img {
    margin-left: 8px;
}

@media (max-width: 1000px) {
    .btn.main-site-link {
        display: none;
    }
}