*{
 padding: 0;
 margin: 0;
 box-sizing: border-box;
 font-family: 'Luckiest Guy',cursive;
 color: black;
}

body{
  background-image: url(apiimg.jpg); 
  background-repeat: no-repeat;
  background-size: cover; 
}
 
section{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center ;
    padding: 20px;
} 

section h1{
    text-shadow: 2px 5px 5px #2f3542;
    word-spacing: 10px;
    margin-bottom: 15px; 
    font-size:2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}
.centerDiv{ 
  width: 90%; 
  box-shadow:2px 2px 2px 5px white ;
  display: flex;  
  flex-direction: column;  
  align-items: center;
  background: #57606f;
  color: white;
  padding: 20px;
}
#holder{
  color: aliceblue ;
}


.details{
    text-align: center;
    text-transform: uppercase ;
    position: relative;
}

.details label{font-size: 1.4rem;}
.details input {
    padding: 5px;
    background-color: #ff6b81;
    color: white;
    align-self: auto ;
}
.details input[type=text]:focus {
  border: 3px solid #555;
}

.infodiv {margin: 30px 0;}

button {
  background: #3498db;
  width: 100px;
  padding: 3px 0;
  border-radius: 3px;
  margin: 10px;
  color:white;
  font-size: 1.2rem;
  letter-spacing: 2px;
  background-color: darken(#f1c40f, 20%);
}

  button:hover {
    cursor: pointer;
  }
