body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #dbdfea 50%, white 50%);
}

#thankyou-page {
    background: #DBDFEA;
}

@media (max-width: 991.98px) {
    body, html {
        background: #DBDFEA;
    }
    h2 {
        font-size: 24px;
    }
    #domain-list a {
        font-size: 22px !important;
    }
    p {
        font-size: 14px !important;
    }
}

.container {
    flex: 1;
    background: transparent;
}

h2 {
    color: #47557c;
}

p {
    text-align: center;
    font-size: 20px;
}

#domain-list {
    list-style-type: none;  /* This removes the bullet points */
    padding: 0;  /* This removes the default padding */
}

#domain-list a {
    font-size: 30px;
    color: #8294C4
}

.row {
    align-items: center;
    justify-content: center;
    height: 85%;
}

.col-md-6 {
    text-align: center;
}

.form-group {
    text-align: left;
}

textarea {
    min-height: 90px;
}

.btn {
    background: #47557c;
    border-color: #47557c;
    width: 100%;

}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    padding: 5px 0;
    text-align: center;
}

.push-down {
    padding-bottom: 100px; /* Adjust this value according to your footer's height */
}