@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;700&display=swap');

.base-body {
    /*background-image: linear-gradient(to bottom, #003399, #003399, #001133);*/
    background: radial-gradient(97.51% 67.75% at 56.15% 35.54%, #003399 0%, #003399 55.28%, #001133 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

    height: 100%; /* Full height */
    margin: 0;
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    font-family: 'Noto Sans', sans-serif;
    color: #ffffff;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensures it covers the whole page even when scrolling */
    background-size: cover; /* Ensures full coverage */
}
.number {
    color: #ffffff; /* Fallback for older browsers */
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    align-self: flex-start; /* Moves the truck image to the left */
}
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}
h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5vh;
}

p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 25px;
}
button {
    box-shadow: 6px 16px 24px 0px #00000040;
    background: radial-gradient(89.63% 89.63% at 50% 50%, #FFE169 0%, #FFCC00 100%);
    color: black;
    width: 30vw;
    max-width: 250px;
    min-width: 150px;
    height: 72px;
    top: 887px;
    left: 322px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
button:hover {
    background-color: #FFC107;
}

.container {
 width: 100%;
 padding-right: 0px;
 padding-left: 0px;
 margin-right: 0px;
    margin-left: 0px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    p {
        font-size: 1.0rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    .number {
        color: #ffffff; /* Fallback for older browsers */
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        align-self: flex-start; /* Moves the truck image to the left */
    }
    h2 {
        font-size: 1.5rem;
    }

}