* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    scroll-behavior: smooth;
}
body{
background-color:rgb(172, 137, 253);
}
.container{
    margin-left: 10%;
    width: 80%;
    border: 1px solid rgb(12, 12, 12);
    margin-top: 20%;
    margin-bottom: 20%;
    background: white;
    border-radius: 12%;
    box-shadow: 0 0 8px rgb(71, 71, 71), 0  0 65px rgb(39, 1, 255);
}
button{
    height: 40px;
    margin-left: 80px;
}
.third{
    display: inline-block;
    padding:2.5pxpx;
    text-align: center;
    background-color:white;
    border-color: white;
    border: 1px solid rgb(107, 106, 106);
    width: 60%;
    color: red;
    font-size: 15px;
    border-top-left-radius: 51px;
    border-top-right-radius: 51px;
    border-bottom-left-radius: 51px;
    border-bottom-right-radius: 51px;
    
}
.third:hover{
    box-shadow: 0 0 8px blue, 0 0 8px white, 0 0 8px blue, 0 0 8px rgb(125, 165, 246), 0 0 8px rgb(81, 138, 253);
}
.fourth{
    display: inline-block;
    padding:2.5px;
    text-align: center;
    background-color:white;
    color:red;
    border-color: white;
    border: 1px solid rgb(134, 133, 133);
    width: 60%;
    font-size: 15px;
    border-top-left-radius: 51px;
    border-top-right-radius: 51px;
    border-bottom-left-radius: 51px;
    border-bottom-right-radius: 51px;
}
.fourth:hover{
    box-shadow: 0 0 8px blue, 0 0 8px white, 0 0 8px blue, 0 0 8px rgb(125, 165, 246), 0 0 8px rgb(81, 138, 253);
}
@media screen and (max-width: 768px) {
    button {
        margin-left: 22%;
        width: 90%;
    }
.container{
    margin-top: 20%;
    padding-bottom: 16%;
    border-radius: 15px;
}
    .third {
        margin-top: 20% ;
        margin-left: 24%;
        width: 50%;
        font-size: 14px; /* Adjust font size for smaller screens */
    }
    .fourth{
    margin-top: 5%;
    margin-left: 24%;
    width: 50%;
    font-size: 14px;
    }
}

@media screen and (min-width: 769px) {
    button {
        margin-left: 20%;
    }
.container{
    margin-top: 20%;
    padding-bottom: 16%;
    border-radius: 15px;
}
    .third {
        margin-top: 20%; /* Keep the larger margin for desktop */
        width: 60%;
        font-size: 15px; /* Default font size */
    }
    .fourth{
        margin-top: 5%;
        width: 60%;
        font-size: 15px;
    }
}