body {
    font-family: Arial, sans-serif;

    background-color: black;
    background-image: url('background.jpg');
    color: #333;
    
    margin: 0;
    padding: 0;
    /* 
    height: max-content;
    width: 100vw;
    overflow-x: hidden;

   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;*/
  }
  
.button {
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
}
.button:hover{
    background-color: black;
    border: 1px solid white;
    color:white;
}