@charset "utf-8";

body {
    font-family: 'Crimson Text', sans-serif;
}
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: #f0f0f0;
}


.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.hero-text h1{
    position: absolute;
    top: 5%;
    left: 0%;
	width: 100%;
    font-weight: bold;
    text-align: center;
    color: #fff;
	font-size: 90px;
    margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


.hero-text p {
	position: fixed;
	top: 77%;
	padding: 40px;
    font-size: 30px;
    text-align: center;
    color: #fff;
	background: linear-gradient(to right, #00bfff, #1e90ff);
	border-radius: 10px;
	text-shadow: 3px 3px 4px rgba(255, 255, 255, 0.5);
}


.hero-text button {
	font-family: 'Crimson Text', sans-serif;
	position: absolute;
	top: 70%;
  	left: 50%;
	transform: translate(-50%, -50%);
    background: linear-gradient(to right, #00bfff, #1e90ff);
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
	border-radius: 20px;
    cursor: pointer;
}


.hero-text button:hover {
    background: #D97101;
}


.right-section {

  position: absolute;
  top: 65%;
  right: 40px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}


.right-section img {
	
  width: 100px;
  height: 100px;
  border-radius: 50%;
  left: 110px;
  box-shadow: 0 0 0 4px #fff;

}


.right-section p {

  font-size: 23px;
  color: #fff;
  margin-top: 120px;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}

.hero-text h2 {
	
  position: absolute;
  text-align: center;
  left: 40%;
  top: 19%;
  font-size: 44px;
  font-weight: lighter;
  font-style: italic;
  margin-bottom: 16px;
  color: #fff; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
