body {
    background-image: url("bgimg.png");
    background-size: cover;
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    width: 100%;
    margin: auto;
    font-family: sans-serif;
    font-weight: bold;
    text-align: center;
}
.title_div {
    background-color: rgb(0, 0, 0, 0.5);
    margin: auto;
    padding: 10px;
    box-shadow:  0px 10px 10px rgb(0, 0, 0);
    text-shadow:  0px 0px 10px rgb(255, 255, 255);
}
#log {
    text-shadow:  0px 0px 10px rgb(255, 255, 255);
}
#log2 {
    text-shadow:  0px 0px 10px rgb(255, 255, 255);
}
.btn {
    width: 200px;
    margin-top: 1%;
    margin-left: 1%;
    background-color: rgb(0, 0, 0, 0.5);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 100px;
    padding: 10px;
    box-shadow:  0px 10px 10px rgb(0, 0, 0);
    font-size: 18px;
    font-weight: bold;
    transition: 600ms;
    cursor: pointer;
}
.btn:hover {
    box-shadow: inset 0px 0px 10px rgb(255, 255, 255, 0.5);
}
.bottom {
    bottom: 1%;
    position: absolute;
    width: 80%;
    left: 10%;
    right: 10%;
    margin: auto;
    font-size: 14px;
    font-style: italic;
    text-align: center;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 2px rgb(100, 100, 100);
    padding: 5px;
}