.cover {
    position: fixed;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}
.cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
}
.cover img.sm {
    display: none;
}

@media (min-width: 400px) {
    .cover img:not(.sm) {
        display: none;
    }
    .cover img.sm {
        display: block;
    }
}

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

.cover .content > div {
    margin-bottom: 40px;
    color: black;
}

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

.cover .content > div h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cover .content > div h5 {
    font-size: 24px;
    font-weight: bold;
}

.cover .content > a {
    font-family: YAFdJnPX3ZE-0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px 24px;
    padding-top: 7px;
    font-size: 16px;
    cursor: pointer;
    background: #93743D;
    color: white;
    font-weight: bold;
}