.wrapper {
    padding: 2rem;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.wrapper h1, .wrapper h2, .wrapper h3 {
    color: #faa8bf;
    font-weight: bold;
}
.wrapper h3 {
    font-weight: bold;
    font-size: 0.9rem;
    color: #727272;
}
.wrapper p {
    margin: 1rem 0;
}
.txt {
    width: 40%;
    margin-left: 3rem;
}
.h2 {
    margin-top: 2.5rem;
    font-family: 'Dawning of a New Day', cursive;
    font-size: 2.5rem;
    font-weight: bold;
}

.wrapper .txt .Btn-small {
    padding: 0.6rem 2rem;
    font-weight: bold;
    font-size: 1rem;
    display: inline-block;
    margin-top: 0.5rem;
}
.img {
    width: 40%;
}

.img img {
    width: 100%;
    max-width: 430px;
    min-width: 300px;
}

@media (max-width: 1080px){
    .txt {
        width: 50%;
    }
}

@media (max-width: 970px){
    .h2 {
        margin-top: 1rem;
    }
}

@media (max-width: 730px){
    .wrapper {
        flex-direction: column;
        align-items: center;
    }
    .txt {
        width: 95%;
        text-align: left;
        margin: 0;
        margin-bottom: 1rem;
    }
    .wrapper p {
        text-align: left;
    }
    .img {
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 500px){
    .wrapper .txt .Btn-small {
        font-size: 0.9rem;
    }
    .wrapper {
        padding: 1rem;
    }
}