@import url('https://fonts.googleapis.com/css2?family=Recursive:wght@500&family=Ubuntu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300&display=swap');

body {
  margin: 0;
  animation: mymove 5s infinite;
  background-image: linear-gradient(0.65turn, #a366ff, #ebf8e6, #ff66b3);
  font-family: 'Recursive', sans-serif;
  font-family: 'Ubuntu', sans-serif;
}

.about {
  padding-left: 5%;
  padding-right: 5%;
  font-size: 1.5rem;
  text-align: center;
  margin: 0;
}

.header {
  padding: 1%;
  font-size: 3rem;
  color: white;
  min-height: 100px;
  text-align: center;
  background-color: #282A35;
  margin: 0;
}

@keyframes mymove {
  from {
    background-image: linear-gradient(0.65turn, #a366ff, #ebf8e6, #ff66b3);
  }

  to {
    background-image: linear-gradient(0.65turn, #ff66b3, #ebf8e6, #a366ff);
  }
}

.container {
  width: 100%;
  margin: auto;
}

h1 {
  text-align: center;
  color: #311b52;
}



.box {
  padding-left: 300px;
  padding-right: 200px;
  margin: auto;
}

.table {
  padding-left: 100px;
}

.btn {
  margin-right: 16px;
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Courier New;
  color: #ffffff;
  font-size: 25px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn:hover {
  background: #a366ff;
  background-image: -webkit-linear-gradient(top, #a366ff, #ff66b3);
  background-image: -moz-linear-gradient(top, #a366ff, #ff66b3);
  background-image: -ms-linear-gradient(top, #a366ff, #ff66b3);
  background-image: -o-linear-gradient(top, #a366ff, #ff66b3);
  background-image: linear-gradient(to bottom, #a366ff, #ff66b3);
  text-decoration: none;
}

.choose-file {
  padding: 5px 10px;
  background: #ff66b3;
  border: 1px solid #a366ff;
  position: relative;
  color: #fff;
  border-radius: 2px;
  text-align: center;
  float: left;
  cursor: pointer
}

#input-file {
  position: absolute;
  z-index: 1000;
  opacity: 0;
  cursor: pointer;
  right: 0;
  top: 0;
  height: 100%;
  font-size: 24px;
  width: 100%;
}
