/*
Background : e9ecef
Primary : ffd100
Secondary : 0077b6
Text : 000814
*/

@import url('https://fonts.googleapis.com/css2?family=Arizonia&family=Funnel+Display:wght@300..800&display=swap');

* {
    padding: 0px;
    margin: 0px;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: "Funnel Display", sans-serif;
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

header {
    width: 100vw;
    height: 10vh;
    background-color: #ffd100;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

h1 {
    display: flex;
    font-family: "Arizonia", cursive;
    justify-content: start;
    align-items: center;
    color: #000814;
    font-size: 4.5em;
    height: 100%;
    width: 33%;
}

nav {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
    width: 55%;
}

nav a {
    text-decoration: none;
    font-size: 2em;
    margin-left: 2em;
    color: #000814;
}

main {
    width: 100vw;
    min-height: 90vh;
}

section {
    width: 100%;
    height: 75vh;
}

#newest {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#newest img {
    z-index: 0;
    width: 66%;
    position: absolute;
    clip-path: inset(15% 3% 15% 3%);
}

#newest h2 {
    color: #e9ecef;
    z-index: 1;
    font-size: 7em;
    position: absolute;
    text-align: center;
}

#newest h2 span {
    font-family: "Arizonia", cursive;
}

#car_gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#car_gallery h2 {
    font-size: 5em;
}

#card_container {
    width: 95%;
    min-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.card {
    transition-duration: 200ms;
    border-radius: 25px;
    background-color: #e9ecef;
    height: 500px;
    width: 350px;
    margin: 35px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.3);
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.3);
}

.card:hover {
    transition-duration: 200ms;
    transform: scale(105%);
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.7);
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.7);
}

.card_header {
    border-radius: 25px;
    width: 100%;
    height: 55%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.card_header img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    width: 100%;
}

.card_header h3 {
    text-align: center;
    font-size: 2.5em;
}

.card_header h3 span {
    font-family: "Arizonia", cursive;
}

.card_description {
    border-radius: 25px;
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}

.card_description p {
    height: 65%;
    font-size: 1.1em;
    margin: 0 10px;
    text-align: justify;
}

.download_button {
    border: none;
    border-radius: 25px;
    background-color: #0077b6;
    width: 250px;
    height: 45px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.4em;
    transition-duration: 200ms;
    text-decoration: none;
    cursor: pointer;
}

.download_button a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: row;
    color: #fff;
    text-decoration: none;
}

.download_button:hover {
    transition-duration: 200ms;
    transform: scale(101%);
    -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.2);
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.2);
}
