body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: Verdana, Arial, sans-serif;
    color: #fff;
}

.background {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url('./background.webp');
    background-size: cover;
}

.background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34,38,42,.3);
}

.logo {
    display: block;
    position: absolute;
    top: 30px;
    left: 60px;
    width: 304px;
    height: 62px;
    background-image: url('./logo.webp');
    background-size: contain;
    background-repeat: no-repeat;
}

.footer {
    display: block;
    position: absolute;    
    bottom: 14px;
    width: 100%;
    text-align: center;
    line-height: 20px;
    font-size: 13px;
    color: rgba(255,255,255,.7);
}