/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

body,
html {
    height: 100%;
}

/* Set core body defaults */
body {
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* Set core root defaults */
html:focus-within {
    scroll-behavior: smooth;
}

#main-content {
    background-image: url("./../images/bg.jpg");
    height: 100%;

    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0.65;
}

.caption .title,
.caption .info {
    color: #fff;
    background-color: #111;
}

.caption .title {
    letter-spacing: 10px;
    font-size: 32px;
    padding-top: 8px;
}

.caption .info {
    font-size: 18px;
}

.caption .info:last-child {
    padding-bottom: 16px;
}

.caption .info a {
    color: #ed861e;
}
