
.claim {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 30px;
    color: #ffffff;
}

.pujada {
  margin-top: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pujada .file-upload {
  height: 150px;
  width: 150px;
  border-radius: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #FFFFFF;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #000000 50%, #FFFFFF 50%);
  background-size: 100% 200%;
  transition: all 1s;
  color: #FFFFFF;
  font-size: 100px;
}

.pujada .file-upload input[type='file'] {
  height: 200px;
  width: 200px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

.pujada .file-upload:hover {
  background-position: 0 -100%;
  color: #000000;
}

.upload_another {
  height: 100px;
  width: 100px;
  border-radius: 50px;
  top: 0;
  left: 0;
  cursor: pointer;
  font-size: 50px;
}

