@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.hero {
    width:100vw;
    height:100vh;
    background:url('../images/home_image.jpg');
    background-size: cover;
    background-position: center;
    color:#fff;
    background-color:grey;
    display:flex;
    flex-direction:column;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
}

.hero::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:#000;
    opacity: .3;
}

.hero *{
    z-index:1;
}

.home {
    font-weight:100;
    font-size: 35px;
    text-transform:uppercase;
    margin:30px 0 30px;
    color:#fff;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    padding: 10px;
}

.hero h1 {
    position:absolute;
    font-size: 60px;
    font-weight:300;
    bottom: 10%;
    padding: 150px;
}

.hero .button {
    position:absolute;
    height: 50px;
    width:150px;
    bottom: 20%;
    color: #000;
    background: tan;
    display:flex;
    justify-content: center;
    align-items:center;
    font-weight: 700;
}

.hero .button:hover{
    opacity:.8;
}
