@font-face {
    font-family: stair;
    src: url(./Night\ Beats.otf);
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
}

#main{
   height: 100%;
   width: 100%;
   background-image: url(https://images.unsplash.com/photo-1601924800504-9e0170dc491c?q=80&w=2013&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
   background-size: cover;
   background-position: center;

   text-align: center;
   padding: 60px;
}

h1{
    font-size: 50px;
   font-family: stair;
   color: #FFFACD;
   font-weight: 200;
}
h1:hover{
    color: #EC7D2C;
    transform: scale(1.07);
}

button{
    padding: 15px 30px;
    font-size: 20px;
    background-color: #EC7D2C;
    color: #FFFACD;
    font-weight: 800;
    font-family: stair;
    border: 3px solid #50382A;
    border-radius: 10px;
}
button:hover{
    color:#50382A;
    background-color: #ce5c0a;
    transform: scale(1.05);
}