/* Box Model Hack */
* {
  box-sizing: border-box;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}
:root {
  --nasa-red : #fc3d21;
  --nasa-blue : #0b3d91;
  --nasa-white : #ffffff;

}

/******************************************
/* BASE STYLES
/*******************************************/


html,body { 
  background: linear-gradient( rgba(0, 0, 0, 0.753) 0%, rgba(0, 0, 0, 0.925) 100%),url(../img/nasa-bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body {
 color: var(--nasa-blue);
 background-color: var(--nasa-white);
 font-family: 'Space Grotesk', sans-serif;
}
.overlay{
  /* background-color: rgba(0, 0, 0, 0.932); */
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  
  padding: 10px;

}

.wrapper{
  border: 1.5px solid  #fc3e2157;
  /* box-shadow: 0px 0px 30px -2px rgba(194,10,10,1); */
  padding: 25px; 
  border-radius: 8px;
   display: flex;
   flex-flow: column nowrap;
   justify-content: space-between;
   align-items: center;

}
.wrapper:hover{
  box-shadow: 0px 0px 30px -2px #fc3e2157 ;
  transition: all 0.5s;
}
img{
  max-width: 900px;
  max-height: 700px;
  object-fit: contain;
 transition: all 0.3s;
}
.circle{
  width: 150px;
  height: 150px;

  background-size: cover;
  display: block;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}

h1 {
  color:var(--nasa-red)
}
p{
  font-size: 20px;
  line-height: 30px;
  font-weight: 530;
  text-align: justify;
  font-weight: 900;
}

form {

  display: flex;
  flex-direction: column;
  padding: 10px;
 margin-top: 20px;
}
input,
button {
  padding: 8px;
 border: 1.5px solid black;
 border-radius: 8px;
 font-weight: bolder;
 color: var(--nasa-blue);
 font-size: 20px;
outline: none;

}
input {
 margin-bottom: 10px ;
 padding: 5px;
 text-align: center;
}

button {
background-color: var(--nasa-red);
cursor: pointer;
}


button:hover,
button:focus {
  background-color: var(--nasa-blue);
  color: var(--nasa-white);
  transition: all 0.6s;
  }
  
  
  




/******************************************
/* LAYOUT
/*******************************************/


/******************************************
/* ADDITIONAL STYLES
/*******************************************/
