html, body {
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
}
.swal-title {
    text-align: center;
    font-size: 24px;
    background: white;
}
.swal-text {
    text-align: center;
    font-size: 24px;
    background: white;
}
.swal-footer {
    font-size: 24px;
    background: white;
}
.swal-button {
    font-size: 16px;
    padding: 5px 20px;
    border: 1px solid gray;
    border-radius: 4px;
}
.container{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 5vmin;
}
.ca {
    position: absolute;
    top:50%; left:50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
}
div {
    background: gray;
}
form {
    display: inline;
    text-align: center;
}
input[type=submit] {
    font-size: 3vmin;
    background-color: rgb(91, 151, 203);
    color: white;
    margin: 0 8;
    padding: 0 20px;
    border: 3px solid rgb(91, 151, 203) ;
    border-radius: 4px;
    cursor: pointer;
}
input[type=submit]:hover {
    font-size: 3vmin;
    background-color: rgb(91, 151, 203);
    color: white;
    margin: 0 8;
    padding: 0 20px;
    border: 3px solid rgb(10, 99, 233);
    border-radius: 4px;
    cursor: pointer;
}
input[type=button] {
    font-size: 3vmin;
    background-color: rgb(91, 151, 203);
    color: white;
    margin: 0 8;
    padding: 0 20px;
    border: 3px solid rgb(91, 151, 203) ;
    border-radius: 4px;
    cursor: pointer;
}
input[type=button]:hover {
    font-size: 3vmin;
    background-color: rgb(91, 151, 203);
    color: white;
    margin: 0 8;
    padding: 0 20px;
    border: 3px solid rgb(10, 99, 233);
    border-radius: 4px;
    cursor: pointer;
}
input[type=text], select {
    font-size: 3vmin;
    text-align: center;
    padding: 0 20px;
    display: inline-block;
    border: 3px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

