#bg-image{
     position: absolute;
    inset: 0;
     z-index: -1;
     object-fit: cover;
     width: 100vw;
     height: 100vh;
}
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    position: relative;
    
}
* {
    box-sizing: border-box;
    padding: 0;
     margin: 0;
     color:white;
     font-family: Arial, Helvetica, sans-serif;
}
a {
    color: white;
    text-decoration: underline;
    margin-bottom:40px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}
p{
     line-height: 1.2em;
     font-size: 1.1em;
}
.content {
    position: relative;
    z-index: 2;
    text-align: center;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100%;
     padding-block: 10vh;
     justify-content: space-between;
}
.page {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-family: BlockGothic, Arial, sans-serif;
    font-weight: normal;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 5em;
    }
}
.cta{
     margin-bottom:30px;
}
@font-face {
    src: url("../fonts/BlockGothic.otf") format("opentype");
     font-family: BlockGothic;
}
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 100;
}
i.fa-brands.fa-instagram {
 position:absolute;
 bottom:40px;
    right:40px;

}
.logo-image{
    filter: invert(1);
}