/* Reset some default styles for margin and padding */
body, h1, p {
    margin: 0;
    padding: 0;
}

/* Apply Space Grotesk font from Google Fonts */
body {
    font-family: 'Space Grotesk', sans-serif;
}

header {
    position: relative;
    flex-direction: column;
    height: 100vh; /* 100% of the viewport height */
    background-color: #6189FF; /* Fallback background color */
    background-size: cover;
    background-blend-mode: screen; /* Blend mode for overlaying images */

}

.background-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image {
    width: 33.33%;
    height: 100%;
    float: left;
    /* You can set the background images for each .image element in CSS or inline style */
}

.header-content {
    text-align: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff; /* Text color */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.title {
    font-size: 80px; /* Adjust as needed */
}

.description {
    font-size: 16px;
    margin-top: 10px;
}

/* Style the button */
.rounded-button {
    background-color: #FF595B;
    color: #fff;
    padding: 20px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; /* Smooth transition animation with ease-in-out timing function */
    /* Regular state styles */
}
.rounded-button:hover {
    background-color: #fff; /* Change background color on hover */
    color: #000; /* Change text color on hover */
    /* Additional styles for the hover state */
}
