body {
    margin: 0px;
    box-sizing: border-box;
    padding: 0px 40px;
    width: 100%;
    height: 100vh;
    background: url(images/background-image.jpg);
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    font-family: 'Impact', sans-serif;
    user-select: none;
}
.container {
    margin: auto;
    width: 70%;
    height: 90vh;
    background: linear-gradient(10deg, #ffffff62, #00000040);
    border-radius: 40px;
    transition: all .5s;
    animation: glowback 20s infinite;
    position: relative;
    display: flex;
    place-items: center;
    box-sizing: border-box;
    overflow: hidden;
}
.c1 {
    background: linear-gradient(10deg, #fdfdfd10, #8c878430);
    height: 10vh;
    top: 30px;
    font-family: 'Impact', sans-serif;
    box-sizing: border-box;
    padding-left: 3vh;
    display: flex;
    place-items: center;
    justify-content: space-between;
    gap: 3vh;
}
.icons {
    margin-right: 22px;
    width: fit-content;
    display: flex;
    justify-content: right;
    gap: 5vh;
}
.icons i {
    scale: 1.8;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    background: #ffffff6d;
    padding: 7px;
    border-radius: 20px;
}
.c2 {
    height: 60vh;
    padding: 3vh;
}
.card1 {
    height: 50vh;
    display: grid;
    place-items: center;
    gap: 3vh;
}
.card1 div {
    display: flex;
    place-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 40px;
    width: 250px;
    height: 70px;
    font-size: 25px;
    color: #ffffff;
    text-shadow: 0px 0px 50px #000;
    background: #00000046;
}
.card1 img {
    transition: all .5s;
    filter: brightness(120%);
}
.card1 img:hover {
    filter: brightness(190%);
}
.i1 {
    width: 250px;
    height: auto;
    border-radius: 40px;
}
.card2 {
    width: 310px;
    height: 53vh;
    margin-left: 50px;
    display: grid;
    place-items: center;
    gap: 3vh;
    border-radius: 40px;
    background: #00000040;
    box-sizing: border-box;
    padding: 3vh;
    font-size: 18px;
}
.i3 {
    height: 65vh;
    position: absolute;
    top: 0;
    right: 0;
    filter: hue-rotate(180deg) brightness(100%) contrast(1);
    transition: all .5s;
}
.i3:hover {
    filter: hue-rotate(320deg) brightness(110%) contrast(1.5);
}
.c3 {
    border-radius: 60px;
    background: linear-gradient(10deg, #ffffff40, #ffffff20);
    height: 15vh;
    top: -30px;
    overflow: hidden;
}
.c3 div {
    color: #c7c7c7;
    text-shadow: 0px 0px 40px #000000;
    font-family: 'Impact', Arial;
}
.redtext {
    color: #ff0000;
}
@keyframes glowback {
    0% {
        backdrop-filter: blur(100px) contrast(2);
    }
    25% {
        backdrop-filter: unset;
    }
    35% {
        backdrop-filter: unset;
    }
    55% {
        backdrop-filter: blur(80px) grayscale(100);
    }
    75% {
        backdrop-filter: blur(10px);
    }
    100% {
        backdrop-filter: blur(100px) contrast(2);
    }
}
.container:hover {
    backdrop-filter: blur(40px);
}



.start {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-radius: 40px;
    width: 270px;
    padding: 20px;
    background: #ffffff50;
    backdrop-filter: blur(1px);
    position: relative;
    left: 60px;
    top: 185px;
    cursor: pointer;
    transition: all 0.5s;
}
.start:hover {
    backdrop-filter: blur(100px);
}
.c3 img {
    height: 13vh;
    width: 13vh;
    margin: 1vh;
    border-radius: 60px;
    filter: grayscale(10);
    cursor: pointer;
    transition: all .5s;
}
.c3 img:hover {
    filter: grayscale(0%) contrast(1.5);
}
.carname {
    width: 100%;
    font-family: sans-serif;
    font-size: 6vw;
    overflow: hidden;
    user-select: none;
}