body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #aef0f3, #1cafbe); /* Matching the background gradient from the image */
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 1000px;
}

.container .i-p {
    text-align: center;
}

.logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Adjust the spacing between the logo and title as needed */
}

.logo img {
    width: 100px; /* Adjust as necessary */
    margin-bottom: 0; /* Align with the text */
}

h1 {
    font-size: 3em;
    margin: 0;
    color: #333;
}

p {
    font-size: 2em;
    margin-top: 50px;
    color: #333;
}

.footer {
    background-color: #333;
    width: 100%;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
}

.footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
}

.footer a:hover {
    text-decoration: underline;
}
