html {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
    background: linear-gradient(to right bottom, #8400ff, #ffc400);
}

body {
    display: flex;
    justify-content: center;
   
    background-repeat: no-repeat;

}

.titleClass{
    position: fixed;
    position: relative;
    text-align: center;
    width: 100%;
    top: 20vh;
    font-size: 70pt;
    font-weight: bolder;
    color: #fff;
}

.titleClassParts{
    padding-top: 25px;

}



.loginClass {
    position: fixed;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;


}

.loginButton {
    background: linear-gradient(to right bottom, rgb(84, 160, 87), rgb(18, 201, 24));

    position: relative;
    top: 60%;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    height: fit-content;
    border-radius: 30px;
    z-index: 30;


}

.loginButton:hover{
    font-weight: bolder;
    background: linear-gradient(to right bottom, rgb(111, 211, 114), rgb(25, 255, 33));
    transition: all .5s;

}