* {
    margin: 0;
    padding: 0;
    font-family: 'Google Sans', sans-serif;
}

:root {
    --primary-color: #29A885;
    --secondary-color: #11263B;
}

header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.contact-btn{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eaeaea;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.hero .hero-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.hero .hero-buttons a {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    display: inline-block;
    font-weight: 500;
    transition: background-color 0.3s ease;
    width: calc(100% - 40px);
}

.hero .hero-buttons a:nth-child(1) {
    background-color: var(--primary-color);
    color: white;
}

.hero .hero-buttons a:nth-child(2) {
    background-color: var(--secondary-color);
    color: white;
}

.hero .badges {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.hero .badge {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
    display: inline-block;
}

/* Individual Colors */
.hero .vercel {
    background: #000;
}

.hero .github {
    background: #24292e;
}

.hero .node {
    background: #3c873a;
}

.hero .ssl {
    background: #1e90ff;
}

/* Hover effect */
.hero .badge:hover {
    opacity: 0.85;
    cursor: default;
}

.test{
    width: 600px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 2rem;
}

.smtp-container{
    width: 400px;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 2rem;
}

.smtp-container h1,
.smtp-container h1 + p{
    text-align: center;
}

.smtp-container h1 + p{
    color: var(--secondary-color);
}

.smtp-form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
    border-radius: 10px;
}

.smtp-form input {
    padding: 20px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 16px;
    outline-color: var(--primary-color);
    border: 1px solid #ccc8;
}

.smtp-form button {
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}

.smtp-container ol{
    margin-left: 1rem;
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
    }
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #eaeaea;
    margin-top: 2rem;
}