.cover {
    position: fixed;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}
body.theme-1 .cover {
    background: #fff;
}
body.theme-2 .cover {
    background: white;
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}
body.theme-3 .cover {
    background: #E7EBDD;
}
.cover img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cover .content {
    font-family: YAFdJtfMD6Y-0;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 20px;
}

.cover .content > div {
    margin-bottom: 16px;
    color: white;
}

.cover .content > div h4, .cover .content > div h5 {
    margin: 0;
}

.cover .content > div h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2px;
    color: #A6A6A6;
}

.cover .content > div h5 {
    font-size: 28px;
    font-weight: bold;
    color: #A29353;
}

.cover .content > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 60px;
    padding: 8px 24px;
    padding-top: 7px;
    font-size: 16px;
    cursor: pointer;
    background: #fff;
    font-weight: lighter;
    color: #A29353;
    border: 1px solid #A29353;
}
