

 .container{
   border: 1px solid red;
   max-height: 1000px;
   max-width: 1000px;
 }
 
 .file-upload{
    height:200px;
    width:200px;
    border-radius: 100px;
    display:flex;
    justify-content:center;
    align-items: center;  
    border:4px solid #FFFFFF;
    overflow:hidden;
    background-image: linear-gradient(to bottom, #2590EB 50%, #FFFFFF 50%);
    background-size: 100% 200%;
    transition: all 1s;
    color: #FFFFFF;
    font-size:100px;
  }

  #uploader{
    position:fixed;
    top:50%;
    left:50%;
    margin-left: -100px;
    margin-top: -110px;
    color: #2590EB;
    text-align: center;
    font-size: 22px;
  }

  #upload{
    height:200px;
    width:200px;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    cursor:pointer;
  }

  .file-upload:hover{
    border: 2px solid #2590EB;
    background-position: 0 -100%;
    color:#2590EB;
  }

  
  @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
  font-family: 'Roboto', sans-serif;
}
.join{
  text-align:center;
  margin:10px 0;
}
.overlay {
  display:block;
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  transition: 0.5s;
}
.modal__locked {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 98%;
  width: 450px;
  height: 500px;
  background: white;
  border-radius: 20px;
}
.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.modal-body center {
  margin: 20px;
}
.modal-body center strong {
  font-size: 25px;
  position: relative;
  top: -30px;
}

.modal-body center p {
  position: relative;
  top: -10px;
  font-size: 13px;
}

.map-item{
padding: 5px;
font-size: 20px;
display: flex;
justify-content: space-between;
}
.btn {
  border:none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  width: 145px;
  height: 45px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
 margin-top: 10px;
  color: rgba(0, 0, 0, 0.5);
}

.btn-blue {
  border:none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  width: 145px;
  height: 45px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
  color: white;
  background-color: #2590EB;
}

.btn-blue-presets {
  border:none;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  width: 100px;
  height: 45px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  margin-top: 10px;
  color: white;
  background-color: #2590EB;
}

.upload-btn-wrapper {
  position: relative;
  display: inline-block;
}

.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.bottom-div{
  display: none;
  position: fixed;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

.bottom-buttons{
  margin: auto;
  max-width: 96vw;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.m-2{
  margin-left: 10px;
}

.preset-text{
  font-size: 25px;
  line-height: 0px;
}

  