body {
    background: linear-gradient(to bottom, #131A26, #0D111A);
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    text-align: center;
    height: 875px;
}

/* Logo styling */
.Logo {
    display: block;
    margin: 40px auto 20px;
    width: 250px;
}
/* LOGO ANIM */

/*TITLE*/
.Title1{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 85px;
     text-shadow: 12px 12px #000000;
}

/* About section */
.About {
    font-size: 18px;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-shadow: 2px 4px 3px #dbdddd;
}

/* Buttons */
button {
    background-color: transparent;
    border: 1px solid #3A4A60;
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    margin: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

button:hover {
    background-color: #1E2A3D;
    border-color: #ffffff;
    font-size: 18px;
    padding: 14px 24px;
}
