*{
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
}

.bgimg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Background image */
    background-image: url('splash.jpg');
    /* Full-screen */
    height: 100%;
    /* Center the background image */
    background-position: center;
    /* Scale and zoom in the image */
    background-size: cover;
    /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
    position: relative;
    /* Add a white text color to all elements inside the .bgimg container */
    /* Add a font */
    font-family: 'Work Sans', sans-serif;
    /* Set the font-size to 25 pixels */
}

h1{
    font-size: 60px;
    font-weight: 400;
    margin-bottom: 10px;
    color: white;
}

h2{
    font-weight: 400;
    font-size: 22px;
    color:  #cfd4de;
}

a{
    color: #cfd4de;
    border-bottom: #cfd4de dotted 1px;
    text-decoration: none;
    transition: .6s;
}
a:hover{
    color: white;
    border-bottom: white dotted 1px;
}

.middle {
    padding-bottom: 15%;
    text-align: center;
    max-width: 100%;
}

.topleft {
    position: absolute;
    top: 10px;
    left: 16px;
}