<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', sans-serif;
    font-size: 18px;
    background: linear-gradient(135deg, #4ca9d0, #203a43, #2c5364);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    color: #d1e8ff;
    line-height: 1.7;
    scroll-behavior: smooth;
}

header {
    background: linear-gradient(90deg, #0e69b9, #107fe6);
    color: #fff;
    padding: 80px 20px -10px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 4px;
    border-bottom: 8px solid #00bfff;
}

header::before, header::after {
    position: absolute;
    top: 25px;
    font-size: 1.1em;
    font-style: italic;
    font-weight: bold;
    color: #b3e0ff;
    text-shadow: 2px 2px #003366;
}

header::before {
    content: "â€œThey donâ€™t make â€™em like they used to.â€";
    left: 5px;
}

header::after {
    content: "â€œClassic never goes out of style.â€";
    right: 5px;
}

.logo {
    height: 260px;
    margin-top: 30px;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.7));
    transition: transform 0.5s ease;
}

.logo:hover {
    transform: scale(1.12) rotate(-2deg);
}

nav {
    background: linear-gradient(to right, #0077cc, #33aaff); /* lighter blue */
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em; /* smaller font */
    margin: 0 12px;
    background: rgba(2, 78, 122, 0.6);
    padding: 8px 18px; /* smaller padding */
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

nav a:hover {
    background: #00bfff;
    color: #0564a3;
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

main {
    padding: 60px 40px;
    background: linear-gradient(to bottom right, #1c1c1c, #2a2a2a);
    border-radius: 0 0 30px 30px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    min-height: 80vh;
}

main a {
    color: #66ccff;
    font-weight: bold;
    text-decoration: underline;
}

main a:hover {
    color: #00bfff;
    text-decoration: none;
}
section {
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

footer {
    background: linear-gradient(to right, #003366, #0055aa);
    color: #cceeff;
    text-align: center;
    padding: 30px;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border-top: 8px solid #00bfff;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
}

.gif-container {
    text-align: center;
    margin: 60px 0;
}

.gif-container img {
    width: 85%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease;
}

.gif-container img:hover {
    transform: scale(1.05);
}
.car-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.car-img:hover {
    transform: scale(1.07);
}</pre></body></html>