
body{
    margin:0;
    padding: 0;
    background-size: 400% 400%;
    background: linear-gradient(45deg, rgb(5, 98, 220) 0%, rgb(61, 7, 222) 50%, rgb(220, 10, 161) 75%, rgb(0,0,0) 100%);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    display:list-item;
    align-items: center;
    text-align: center;
    height:100vh;   
    overflow: hidden;
    justify-items: center;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

h1 {
    color:white;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    display: grid;
    position: relative;
    text-align: center;
    margin-top: 20rem;
    font-size: 75px;
}

h2 {
    color:white;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    display: grid;
    position: relative;
    text-align: center;
    margin-top: 0rem;
    font-size: 50px;
}

.button1{
    transition: 0.25s;
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    background-color: #fff;
    padding: 5px 5px;
    border-color: 0;
    border-radius: 15px;
    margin-right: 25px;
}

img{
    width: 20%;
}

.button2{
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    background-color: #fff;
    padding: 5px 5px;
    border-color: 0;
    border-radius: 15px;

}

.button1:hover{
    transition: 0.25s;
    background-color: blueviolet;
    border-color:blueviolet;
    color:#fff
}

.button2:hover{
    transition: 0.25s;
    background-color: blueviolet;
    border-color:blueviolet;
    color:#fff
}

#igen1{
    display: none;
    color:#fff;
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
}