body{
 height: 100vh;
    width: 100%;
    background: linear-gradient(256deg, #e61414, #8c1616, #cac6fd, #ffffff, #858fc7, #0c67db, #0d09ff, #230bff);
    background-size: 1600% 1600%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: 0px 0px;
    background-repeat: repeat-x;
    -webkit-animation: change 25s ease infinite;
    -moz-animation: change 25s ease infinite;
    animation: change 25s ease infinite;
}

@-webkit-keyframes change {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes change {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

@keyframes change {
    0% {
        background-position: 0% 50%
    }
    50% {
        background-position: 100% 50%
    }
    100% {
        background-position: 0% 50%
    }
}

.container{
    height: 100vh;
    display: flex;
    width: 50% !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: white;
    color: white;
   
}
h1{
    font-weight: 700;
       color: black !important;
}
.options{
    height: 68%;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.custom{
    width: 30% !important;
    border-radius: 5px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}
.btn{
    width: 50%;
    height: 12% !important;
    border-radius: 5px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: #3307e2 !important;
}
.btn:hover{
    background-color: rgb(0, 0, 61) !important;
}