* {
    margin: 0;
    padding: 0;
    font-family: 'Albert Sans', sans-serif;
    text-decoration: none; 
  }
body{
    background-color: #ffff;
    color: rgba(189, 189, 189, 0.5);
}
/* HEADER */
header{
    height: 100vh;
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
header p{
    margin-top: -15px;
}
#btn{
    font-family: 'Playfair Display';
    margin-top: 50px;
    padding: 10px;
    color: rgba(233, 232, 232, 0.85);
    border: none;
    background: none;

    transition: all 0.2s ease;
}
header button:hover{
    cursor: pointer;
}
.title{
      font-size: 150px;
      font-family: 'Playfair Display';
}