.main-section {
    background: url("../src/images/BG\ yellow\ .svg") no-repeat;
    background-size: 101%;

    height: 700px;
    position: relative;
}

header {
    display: flex;
    justify-content: space-around;

    padding: 30px 0;
}

nav ul {
    display: flex;
    gap: 50px;

    list-style-type: none;
    margin-right: 50px;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: sans-serif;
}

nav span {
    padding: 5px;
    border: 2px solid var(--neon-blue);
}

.logo {
    z-index: 1;
}

.main-section .car-image {
    position: absolute;
    top: 0;
    left: 0;

    width: 488px;
    height: 700px;

    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.main-section .image-container {
    position: absolute;
    top: 15px;
    left: 210px;
    width: 450px; 
    height: auto;
}

.main-section .image-container {
    position: absolute;
    top: 30px;
    left: 210px;
    width: 430px;
    height: auto;
}

.main-section .rect-image {
    position: absolute;
    width: 100%;
    clip-path: polygon(15% 25%, 100% 25%, 85% 60%, 0 60%);
    z-index: 1; 
}

/* Border for parallelogram image */
.main-section .border {
    z-index: 0;
    transform: scale(1.05, 1.08) translateY(2px);
    filter: brightness(0) saturate(100%) invert(19%) sepia(74%) saturate(2736%) hue-rotate(192deg) brightness(89%) contrast(103%);
}

.main-section .blue-line-right {
    width: 10px;
    height: 714px;
    background-color: var(--neon-blue);

    position: absolute;
    top: -10px;
    left: 457px;

    transform: rotate(6deg);
    z-index: 0;
}

.main-section .left-top-lines {
    position: absolute;
    left: 532px;
    top: 119px;
}

.main-section .left-bottom-lines {
    position: absolute;
    left: 490px;
    top: 469px;
}

.main-section .left-bottom-line {
    position: absolute;
    left: 437px;
    top: 595px;
}

.main-section .right-top-line {
    position: absolute;
    right: 0;
    top: 70px;

    transform: scale(-1);
}

.main-section .info {
    background: url("../src/images/Form\ yellow\ 1.svg") right 20px bottom no-repeat;
    background-size: 581px;

    height: 581px;
}

.main-section .info h1 {
    color: #C4FF00;
    font-size: 112px;
    line-height: 80px;

    position: absolute;
    left: 616px;
    top: 210px;

    z-index: 2;
}

.main-section h1 span {
    color: white;
    font-size: 70px;
    font-family: "Livvic";

    margin-left: 42px;
}

.main-section .subtitle {
    font-family: "Microsoft JhengHei";
    font-size: 42px;
    color: var(--neon-green);

    position: absolute;
    left: 658px;
    top: 392px;
}

.main-section button {
    background-color: var(--neon-green);
    padding: 15px 10px;

    font-size: 16px;
    font-family: "Lato", sans-serif;
    font-weight: 600;

    border: none;
    border-radius: 2%;

    position: absolute;
    left: 812px;
    top: 490px;
}

.main-section button a {
    text-decoration: none;
    color: black;
}

.main-section button:hover {
    cursor: pointer;
}