
*{
  box-sizing: border-box;
}

body{
  margin:0;
  padding:0;
  font-family:Georgia, 'Times New Roman', Times, serif;
  /*  background-image: url("../images/numerology-concept-composition.jpg"); Replace with your image path */
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.background {
  background-image: url("../../background5.jpg");
  background-size: cover;

	background-position: center,
		center;
	background-repeat: no-repeat,
		repeat;
	z-index: 2;
}

.container{
  display:flex;
  flex-direction: column;
  align-items: center;
}

.top{
  display:flex;
  flex-direction: column;
  
  width:50%;
  height: 220px;
  margin-top:10%;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;

}

img{
  width: 200px;
  height: 200px;
  
}

h1{
font-size: 30px;
color: black;
}

p{
  color:white;
  font-size: 18px;
}

.bottom{
  display:flex;
  flex-direction: column;
  
  align-items: center;
  width:30%;
  height: 120px;
  margin-top:15%;
  gap:10px;
  color: white;

}

input{
  color: rgb(93, 92, 92);
  font-weight: 500;
}

#submit {
  background: black;
  color: white;
  width: 100px;
  height: 30px;
}

#horoscopeResult{
  color: white;
  font-size: 18px;
  width:50%;
  height:70px;
  text-wrap: wrap;
  margin-top: 10px;
  border: 1px solid white;
  padding: 15px;
  text-align: center;
  margin-bottom: 80px;
}