html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-image: url(./img/cover.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.cover-contain {
    position: relative;
    z-index: 2;
}

h1 {
    font-size: 65px;
}

img {
    border-radius: 15px;
}