@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Poiret+One&display=swap');


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

}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.2;
    
}

.background-image {
    background-image: url(./images/Firewatch.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

h1 {
    font-weight: 350;
    font-size: 70px;
    line-height: 1.4;
    margin-bottom: 12px;
    
}

.text {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
    filter: drop-shadow(0 0 0.75rem black);
}

#q {
    padding: 1.2rem 0;
    font-weight: 300;
    animation: fade-in;
}

button {
    border: none;
    color: #fff;
    background-image: linear-gradient(30deg, #5d00ff, #4ce3f7);
    border-radius: 20px;
    background-size: 100% auto;
    font-family: inherit;
    font-size: 17px;
    padding: 0.6em 1.5em;
    cursor: pointer;
    margin: 20px 0px 0px 0px;
   }
   
   button:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: pulse512 1.5s infinite;
   }
   
   @keyframes pulse512 {
    0% {
     box-shadow: 0 0 0 0 #05bada66;
    }
   
    70% {
     box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }
   
    100% {
     box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
   }