/* Font Face Definitions */
@font-face {
    font-family: 'DieGrotesk';
    src: url('fonts/DieGrotesk-A-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'DieGrotesk';
    src: url('fonts/DieGrotesk-A-Regular.otf') format('opentype');
    font-weight: 400;
}

/* General Styles */
body {
    margin: 0;
    font-family: 'DieGrotesk', sans-serif;
    background-color: #F9FAF6; /* Update background color */
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 20px;
}

/* Logo Styles */
.logo-container {
    background-color: #75FBA9;
    border-radius: 15px;
    display: inline-block;
    padding: 40px;
    margin-bottom: 20px;
}

.logo {
    width: 200px;
    height: auto;
}

/* Typography */
.tagline {
    font-size: 2rem;
    margin: 10px 0;
    font-family: 'DieGrotesk', sans-serif;
}

.blurb {
    font-size: 1rem;
    margin: 10px 0 20px;
}

/* Call to Action */
.cta {
    display: inline-block;
    background-color: #75FBA9;
    color: #000000; /* Set text color to black */
    text-decoration: none;
    padding: 15px 30px; /* Add 30px padding around the text */
    margin:0 20px;
    border-radius: 10px;
    font-size: 1rem;
    transition: background-color 0.3s;
    font-family: 'DieGrotesk', sans-serif;
}

.cta:hover {
    background-color: #5FCF8A;
}

.cta.linkedin {
    background-color: #0077B5; /* LinkedIn blue */
    margin-left: 10px; /* Add spacing between buttons */
}