@import url('https://fonts.googleapis.com/css2?family=Delicious+Handrawn&family=Khand:wght@300;400;500;600;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Patrick+Hand&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


.pqcss-site-content {
    display: unset;
}


.pqcss-button-round {
    background-color: blueviolet;
    border-radius: 200000px;
    height: 35px;
    color: white;
    border: 0 none;
    transition: all 0.25s ease;
}

.pqcss-button-round:hover {
    background-color: rgb(83, 2, 170);
    cursor: pointer;
}

.pqcss-button-classic {
    background-color: black;
    color: white;
    height: 35px;
    border-radius: 4px;
    border: none;
    transition: all 0.25s ease;
}

.pqcss-button-classic:hover {
    background-color: yellow;
    color: black;
    height: 35px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.pqcss-button-round-light {
    height: 35px;
    border: 0.2px solid;
    border-radius: 12px;
    color: black;
    transition: all 0.25s ease;
}

.pqcss-button-round-light:hover {
    height: 35px;
    border: 0.2px solid;
    border-radius: 12px;
    background-color: green;
    cursor: pointer;
    color: black;
}

.pqcss-button-light {
    background-color: white;
    color: black;
    height: 35px;
    border-radius: 4px;
    border: 0.25px solid;
    transition: all 0.5s ease;
}

.pqcss-button-light:hover {
    background-color: green;
    color: black;
    height: 35px;
    border-radius: 4px;
    border: 0.25px solid;
    cursor: pointer;
}

.pqcss-headline-lato {
    font-family: 'Lato';
}

.pqcss-headline-handrawn {
    font-family: 'Delicious Handrawn';
}

.pqcss-headline-khand {
    font-family: 'Khand', sans-serif;
}

.pqcss-headline-phand {
    font-family: 'Patrick Hand';
}

.pqcss-headline-roboto {
    font-family: 'Roboto';
}

.pqcss-headline-pdisplay {
    font-family: 'Playfair Display';
}

.navbarBlue {
    display: flex;
    background-color: blue;
    color: white;
    height: 100px;
}

.Navbars {
    justify-content: center;
    align-items: center;
}

.pqcss-login-simple-container {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    align-self: center;
    border-radius: 5vh;
    width: 40vh;
    height: 37vh;
}

.pqcss-login-simple-container * {
    box-shadow: 0.5vh 0.6vh 0.8vh 0.1vh #000000;
    border-radius: 5vh;
    margin-left: 3vh;
    margin-right: 3vh;
}

.pqcss-login-simple {
    margin-bottom: 0.5vh;
    border-radius: 1vh;
}

.pqcss-login-simple-details {
    margin-bottom: 0.5vh;
    border-radius: 1vh;
}

.pqcss-login-simple-submit {
    margin-bottom: 0.5vh;
    border-radius: 1vh;
    border: rgb(115, 182, 209) solid 2px;
    background-color: rgb(0, 98, 255);
    height: 4vh;
    width: 16vh;
    font-weight: bold;
    font-size: 2.5vh;
    color: lightgray;
    transition: all 0.25s ease;
}

.pqcss-login-simple-submit:hover {
    background-color: rgb(0, 0, 161);
}