*,
*::before,
*::after,
body,
html {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body,
html {
    height: 100%;
    min-height: 100vh;


}

.main{
    position:relative;
    height:100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(images/background.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.main::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1); 
    z-index: 1;
}

.main > * {
    position: relative;
    z-index: 2;
}
h1{
    text-align:center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size:2rem;
    color:rgb(17, 17, 17);
    font-weight:600;

}

.smaller{
    font-size:1.5rem;
    font-weight:400;
    }