/* --gunmetal: #092732ff;
--bice-blue: #336D90ff;
--prussian-blue: #0C3145ff;
--brunswick-green: #133D36ff;
--midnight-green: #285365ff; */

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

body {
  display: flex;
  justify-content: center;
  height: 100vh;
  background: url(img/background-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  
}

.header p{
  font-size: 1.2rem;
}

.header span{
  color: rgb(40, 194, 168);
}

.container{
  width:35%;
  height: 300px;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 5px solid rgb(30, 50, 58);;
  border-radius: 8px;
  background-color: whitesmoke;
  opacity:0.5;
}

.container .header{
  text-align: center;
  line-height: 2.5rem; 
}

.container .hero{
  text-align: center;
  margin-top: 20px;
  line-height: 2rem;
  font-size: 1.5rem;
  width: 40%;
  height: 30%;
  border: 4px solid rgb(10, 26, 32);;
  border-radius: 8px;
  font-weight:600
}

.container .button {
  margin-top: 30px;
}

.button .btn{
  font-size: 1.2rem;
  padding: 0.5rem;
  background-color:#0C3145ff;
  color: white;
}

.hero .hero-name{
  margin-top: 8px;
}

