
body{
    margin: 0;
    background-image: url('/static/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #222831;
    font-family: "Open Sans", sans-serif;
}

.container{
    width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

a {
    color: #00ADB5;
}

a:hover{
    color: #00ADB5;
}

.logo{
    width: 200px;
    display: block;
    margin: 0 auto;
}

h1{
    text-align: center;
}

h2{
    text-align: center;
}

ul{
    padding-left: 0;
    list-style-type: none;
}

ul li{
    margin-bottom: 10px;
    text-align: center;
}

@media (max-width: 600px) {
    .container{
        width: 90%;
        max-width: 300px;
    }
}