*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', sans-serif;
}
body {
    background: linear-gradient(-30deg, #2a1c7a, #db46bd);
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    min-height: 100vh; /* Ensure the gradient covers the entire viewport height */
}

.mc{
    margin-top: 10%;
    display: flex;
    flex-wrap: wrap;
}
.con1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 30px; /* Add padding here */
    box-sizing: border-box; /* Set box-sizing to border-box */
}
.con1 h1{
    color: white;
}
.con1 h3{
    color: #AAB7FF;
}
.con1 p{
    margin-top: 10px;
    color: #AAB7FF;
}
.but{
    border: 2px solid #AAB7FF;
    width: 30%;
    text-align: center;
    padding: 10px;
    border-radius: 15px;
    margin-top: 10px;
    transition: background-color 0.3s, color 0.3s; 
}

.but:hover{
    cursor: pointer;
    background-color:#AAB7FF;
    transform: scale(1.1);
}
.but:hover a {
    color: white; /* Change the color of <a> when hovering over .but */
}
.but a{
    text-decoration: none;
    color: #AAB7FF;
}
.con2{
    width: 50%;
    display: flex;
    justify-content: center;
}
.con2 img{
    width: 70%;
}
.line{
    margin: 10px 0 10px 0;
    border: 1px solid #AAB7FF;;
}

@media (max-width: 720px) {
    .mc{
        justify-content: center;
        flex-direction: column;
    }
    .con1{
        width: 100%;
    }
    .con2{
        width: 100%;
    }
    .but{
        margin: auto;
    }
}