

@mixin display{
    display:flex;
    justify-content:center;
    align-item:center;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{

    font-family: Georgia, 'Times New Roman', Times, serif;
    
}

.container{
    background: url(https://images.unsplash.com/photo-1659083881890-5b9e83be7f0f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=870&q=80) no-repeat center
    center/cover;
    height: 100vh;
    @include displayCenter();
}
&::before{
    position:absolute;
    content:;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
}
.container_inside{
   padding-top: 50px;
    text-align: center;
    color: #fff;
   
}


h1, h2 {
  
    font-family: Georgia, 'Times New Roman', Times, serif;
    padding: 60px;
}
h1{
  
    font-size: 150px;
    font-weight: 300;
    margin-bottom: -150px;
 
}
h2 {
    text-align: center;
    font-size: 150px;
    font-weight: 500;
    margin-top: -100px;
}


