82 lines
1.4 KiB
CSS
82 lines
1.4 KiB
CSS
.hero {
|
|
position: relative;
|
|
width: 100%;
|
|
margin: 0 auto; /* Centering the hero section */
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-top: 80px;
|
|
padding-bottom: 80px;
|
|
padding-left: 40px;
|
|
padding-right: 40px;
|
|
background: linear-gradient(to bottom right, #F9B208, #E72E77);
|
|
}
|
|
|
|
.hero-inner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
.hero-content {
|
|
text-align: center;
|
|
padding: 20px;
|
|
margin-right: none;
|
|
}
|
|
|
|
.hero-logo {
|
|
width: 200px;
|
|
margin: 0 auto 20px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.hero-title {
|
|
font-size: 2.5rem;
|
|
color: white;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.hero-button {
|
|
background-color: white;
|
|
color: #E72E77;
|
|
padding: 15px 30px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 1.4rem;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
|
|
.hero-button:hover {
|
|
/* color: white; */
|
|
/* color: #2ee797; */
|
|
color: #c22a67;
|
|
}
|
|
|
|
.hero-screenshots {
|
|
max-width: 50%;
|
|
display: flex;
|
|
gap: 40px;
|
|
margin-left: 0px;
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.screenshot {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: white;
|
|
border: 5px solid black;
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
|
|
border-radius: 13px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.screenshot img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|