:root {
    --main-color: #2563eb;
    --bg-color: #05060f;
    --text-color: #fff;
    --header-font: "Unbounded", sans-serif;
    --text-font: "Montserrat", sans-serif;
    --next-text-font: "Nunito", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--header-font);
    height: 100vh;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e0e7ff;
    text-align: center;
    padding: 20px;
}

.back-car-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    /* видно низ */
    z-index: -1;
    /* картинка під усім */
}

.logo {
    margin-bottom: 30px;
    animation: float 4s ease-in-out infinite;
}

.logo img {
    width: 180px;
}

h1 {
    font-size: 3rem;
    color: #ff4d4f;
    margin-bottom: 15px;
}

p {
    font-family: var(--text-font);
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 650px;
}

a.button {
    text-decoration: none;
    color: #1e293b;
    background-color: #60a5fa;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s ease;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

a.button:hover {
    background-color: #3b82f6;
    color: white;
}

@keyframes float {

    0%,
    100% {
    transform: translateY(0);
    }

    50% {
    transform: translateY(-10px);
    }
}