body {
    margin: 0;
    padding: 0;
    box-sizing: none;
    overflow : hidden;
}


.container {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.options {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column
}

.panel-client {
    border-radius: 4px;
    width: 300px;
    padding: 20px 0 20px 0;
    background-color: rgb(79, 70, 229);

}

.panel-adm {
    border-radius: 4px;
    padding: 20px 0 20px 0;
    margin-top: 5px;
    width: 300px;
    background-color: rgb(79, 70, 229);

}

.panel-client:hover {
    background-color: rgb(61, 54, 178);
}

.panel-adm:hover {
    background-color: rgb(61, 54, 178);
}

h1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}