* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f4f4f4;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.104);
  background-color: white;
  border-radius: 10px;
}
.head {
  margin-bottom: 10px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.head  h1{
  color: #007bff;
}

.inputLink {
  display: flex;
}

.inputLink input{
  color: #007bff;
  background-color: white;
  width: 70%;
  margin: 1px;
  padding: 8px ;
  border-radius: 5px;
  border: 1px #007bff solid;
  outline: #007bff;
}

.inputLink button{
  color: white;
  background-color: #007bff;
  width: 30%;
  margin: 1px;
  padding: 8px ;
  border-radius: 5px;
  border: 1px #007bff solid;
}

.inputLink button:hover{
  transition: 0.3s ease-in-out;
  background-color: #0365ce;
}

#downloadBtn {
  color: white;
  background-color: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
}

#downloadBtn:hover {
  transition: 0.3s ease-in-out;
  background-color: #0365ce;
}

.border {
  display: flex;
  justify-content: center;
  margin: 1.5rem;
}
