body{
    margin: 0;
    padding: 0;
}

body::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/chess.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: -1;
}

.welcome-container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    height: 100vh;
}

h1.libre-baskerville-regular {
    color: white;
    margin: 0;
    font-size: 3rem;
    text-shadow:
        1px 1px 0 rgb(0, 0, 0), 
        -1px -1px 0 rgb(168, 168, 168), 
        1px -1px 0 rgb(168, 168, 168), 
        -1px 1px 0 rgb(168, 168, 168);
}

button {
    margin-top: 10rem;
}

#start-button{
    background: radial-gradient(
        ellipse,
        rgb(158, 111, 53),
        rgb(87, 55, 16)
    );
    color: white;
    border: black;
    padding: 10px 50px;
    font-size: 18px;
    font-family: "Libre Baskerville", serif;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
}

.libre-baskerville-regular {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .libre-baskerville-bold {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .libre-baskerville-regular-italic {
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-style: italic;
  }