fix: made main look a bit better

This commit is contained in:
MiniPandi 2025-04-03 17:47:36 +02:00
parent f72dac2732
commit 05edfaa05e
2 changed files with 45 additions and 24 deletions

View file

@ -8,31 +8,33 @@
</head>
<body>
<div class="grid-background"></div>
<header>
<div class="container">
<nav>
<a href="#" class="logo">eplg<span>.cloud</span></a>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#pricing">Pricing</a>
<a href="#about">About</a>
<a href="mailto:contact@epilogue.team">Contact</a>
</div>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>Modern Cloud Hosting for the Future</h1>
<p>Experience lightning-fast performance, unmatched pricing, and a seamless experience. The next generation of cloud hosting is here.</p>
<div class="cta-buttons">
<a href="#pricing" class="button button-primary">Get Started</a>
<a href="#about" class="button button-secondary">Learn More</a>
<main>
<header>
<div class="container">
<nav>
<a href="#" class="logo">eplg<span>.cloud</span></a>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#pricing">Pricing</a>
<a href="#about">About</a>
<a href="mailto:contact@epilogue.team">Contact</a>
</div>
</nav>
</div>
</div>
</section>
</header>
<section class="hero">
<div class="container">
<h1>Modern Cloud Hosting for the Future</h1>
<p>Experience lightning-fast performance, unmatched pricing, and a seamless experience. The next generation of cloud hosting is here.</p>
<div class="cta-buttons">
<a href="#pricing" class="button button-primary">Get Started</a>
<a href="#about" class="button button-secondary">Learn More</a>
</div>
</div>
</section>
</main>
<section class="features" id="features">
<div class="container">

View file

@ -440,6 +440,25 @@ footer {
font-size: 0.875rem;
}
/*MiniPandi's Modifications Start*/
main {
min-height: 100vh;
}
main .hero {
min-height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
}
main .hero .container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 25px;
}
/*MiniPandi's Modifications End*/
@media (max-width: 768px) {
.hero h1 {
font-size: 3rem;