*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:url("background.jpg") center center/cover no-repeat;
    overflow:hidden;
    position:relative;
}

/* Blur background slightly */

body::before{
    content:"";
    position:absolute;
    inset:0;
    background:inherit;
    filter:blur(18px);
    transform:scale(1.00);
    z-index:-2;
}


.container{
    position:relative;
    z-index:2;

    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;

    padding:40px;
}

/* Logo */

.logo{
    width:180px;
}

/* Center */

.center{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.center h1{
    font-size:48px;
    letter-spacing:18px;
    color:#2f2f2f;
    font-weight:300;
	text-shadow: -2px 3px 2px rgb(0 0 0 / 0.2);
	text-align:center;
}

/* Footer */

.bottom{
    text-align:center;
    color:white;
    margin-bottom:30px;
}

.email, .address{
	font-size:16px;
    font-weight:100;
    line-height:1.4;
    letter-spacing:.5px;
    opacity:.6;
	font-family: "Wix Madefor Text", "Inter", sans-serif;
}

.email{    
    margin-top:10px;
}


/* Border */

.container::before{
    content:"";
    position:absolute;
    inset:25px;
    border-bottom:5px solid rgba(199,115,1,.7);
    pointer-events:none;
}