* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  background-image: url("websiteBackground.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  height: 100%;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-align: center;

  overflow: auto;
  overflow-x: hidden;

  overflow-y: auto; /* Enable vertical scrolling */
}

#navbar {
  background-color: white;
  justify-content: left;
  display: flex;
  padding: 15px;
  height: 5vh;
  width: 100%;
  position: fixed;
  top: 0;
}

.title {
  margin-bottom: 40px;
}

.box {
  width: 600px;
  height: 200px;
  background-color: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: contain; /* Display the full image within the box */
}

.box2 {
  margin-top: 50px;
  width: 600px;
  height: 200px;
  padding: 10px;
  color: white;
  background-color: #000000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: center;
}

.top-bar {
  background-color: #99D98C;
  position: relative;
  top: -10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

h1 {
  font-size: 60px;
  color: rgba(33, 33, 33, 0.82);
  margin-top: 15vh;
  padding: 10px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.upload-button img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.upload-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.start-button {
  margin-top: 20px;
  background-color: #54BD95;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 10px;
  margin-left: auto;
}

.upload-button {
  background-color: #D9ED92;
  border: none;
  border-radius: 50px;
  padding: 15px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s;
  z-index: 1; /* Add this line */
}

.upload-button:hover {
  background-color: #A6C377;
}

.upload-status {
  margin-top: 10px;
  font-size: 20px;
  color: #666666;
  visibility: hidden;
}

.uploaded .upload-status {
  visibility: visible;
}

.buttons {
  width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1; /* Add this line */

}

.notes-toggle {
  display: flex;
  align-items: center;
  position: relative;
}

.notes-toggle p {
  margin-right: 10px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.notes-toggle input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.notes-toggle label {
  margin-bottom: 10px;
  width: 50px;
  height: 25px;
  background: black;
  display: block;
  border-radius: 25px;
  position: relative;
}

.notes-toggle label:after {
  content: '';
  position: absolute;
  top: 1.25px;
  left: 1.25px;
  width: 22px;
  height: 22.5px;
  background: #fff;
  border-radius: 45px;
  transition: 0.3s;
}

.notes-toggle input:checked + label {
  background-color: #54BD95;
}

.notes-toggle input:checked + label:after {
  left: calc(100% - 1.25px);
  transform: translateX(-100%);
}

.notes-toggle label:active:after {
  width: 32.5px;
}

#start {
  font-size: 20px;
  color: white;
  margin-right: 10px;
}

#copy {
  font-size: 15px;
  margin-right: 5px;
}

#start:hover {
  background-color: #A6C377;
}

#start:hover {
  background-color: #A6C377;
}

.copy-button img {
  height: 20px;
  margin-right: 10px;
}
