html, body {
  background-color: #262626;
  overflow-y: hidden;
  overflow: hidden;
  height: 100%;
  margin: 0;
}

.website {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.drop-area {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: 1;
}

.drop-area p {
  margin: 0;
}

#file-input {
  display: none;
}

#dragDropContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
}

#text1 {
  font-family: "Poppins", Arial, sans-serif;
  font-weight: bold;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 2px black;
  text-transform: uppercase;
  z-index: 2;

  -webkit-touch-callout: none; 
  -webkit-user-select: none; 
   -khtml-user-select: none; 
     -moz-user-select: none; 
      -ms-user-select: none; 
          user-select: none; 
}

#text2 {
font-family: "Poppins", Arial, sans-serif;
font-weight: bold;
font-size: 10px;
position: absolute;
top: 54%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 100%;
color: rgba(0, 0, 0, 0.445);
text-transform: uppercase;
z-index: 3;

-webkit-touch-callout: none; 
-webkit-user-select: none; 
 -khtml-user-select: none; 
   -moz-user-select: none; 
    -ms-user-select: none; 
        user-select: none; 
}

#text3 {
font-family: "Poppins", Arial, sans-serif;
font-weight: light;
font-size: 15px;
position: absolute;
top: 97%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
width: 100%;
color: rgba(255, 255, 255, 0);
-webkit-text-stroke: 1px black;
z-index: 4;

-webkit-touch-callout: none; 
-webkit-user-select: none; 
 -khtml-user-select: none; 
   -moz-user-select: none; 
    -ms-user-select: none; 
        user-select: none; 
}
