
body {
    margin: 0;
    height: 100%;
    background-image: url('background.png');
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.foreground {
    width: 100vw;
    position: absolute;
    z-index: 1;
}

canvas {
    display: block;
    position: absolute;
    top: 15.1%;
    height: 24%;
    left: calc(50% - 5px);
    transform: translateX(-50%);
}

.file-upload {
    color: transparent;
    position: absolute;
    z-index: 2;
    right: 83px;
    top: 53px;
}

.csvUpload {
    width: 70px;
    height: 70px;
    cursor: pointer;
}

.csvUpload::file-selector-button {
    display: none;
    
}

.image-name {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.controls {
    position: fixed;
    top: 676px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.controls button {
    font-size: 42px;
    width: 400px;
    cursor: pointer;
    height: 100px;
    background: transparent;
    border: none;
    color: white;
}


.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 5; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #696969;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 55vh;
    height: 55vh;
  }

  .winner {
    color: white;
    font-size: 64px;
    justify-content: center;
    display: grid;
  }

  #winner-img {
    display: block;
    margin: auto;
    padding: 10px;
    width: 500px;
  }