* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    min-width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #222;
    line-height: 1.6;
    min-width: 100%;
    min-height: 100%;
}

/* Links */
a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #005fa3;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5em;
}

/* Page */
#main {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  overflow: hidden;
}

#main img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#main .text {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: fit-content;
    font-size: 36pt;
    font-weight: 700;
    padding: 5px 15px;
}

.sc {font-variant: small-caps;}

.grey {color: #777;}
