.container {
  min-height: 90vh;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.main {
  padding: 5rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.files {
  padding: 1rem;
  margin-bottom: 2rem;
}

.header{
  display: flex;
  justify-content: flex-end;
}

.logout {
  color: #26313f;
  text-decoration: none;
  font-weight: bold;
}

.name {
  font-weight: bold;
  text-transform: uppercase;
  color: #03336d;
}

.buttonwrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.input {
  width: 25rem;
  height: 2.5rem;
  border-radius: 0.2rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.button {
  height: 2.5rem;
  border-radius: 0.2rem;
  margin-bottom: 2rem;
  display: block;
  border: none;
  background: #0b71f1;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}

.button:hover {
  border: 2px solid #000000;
  border-radius: 5px;
}

.copy {
  height: 2.5rem;
  border-radius: 0.2rem;
  margin-bottom: 2rem;
  display: inline-block;
  border: none;
  background: #151c24;
  color: #ffffff;
  transition: all 0.5s ease-in-out;
}