@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Bebas+Neue&family=Catamaran:wght@400;800&family=Major+Mono+Display&display=swap');

body {background-color: #14342B;
    margin: 0;
    color: #fefefe;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main {
    width: 1200px;
    height: 790px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Catamaran', sans-serif;
    font-size: 16pt;
}

#car-assembly {
    width: 1135px;
    height: 400px; 
    display: flex;
    align-items: center;
    justify-content: space-evenly; 
}
#cars-container {
    width: 1000px;
    display: flex;
}

h3, .contestant span strong {
    color: #e68516;
}

.contestant {
    /* background-color: aqua; */
    width: 365px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-left: 1px solid #91ff37;
    border-right: 1px solid #91ff37;
    text-align: center;

}

.contestant span {
    display: inline-block;
}

h1 {
    font-family: 'Audiowide', cursive;
    font-size: 50pt;
    letter-spacing: 4pt; 
    text-align: center; 
    color:#91ff37;
    text-shadow: 1pt 1pt 4pt #91ff37;
    margin: 30px 0px 10px 0;
}

h2 {
    font-family: 'Major Mono Display', monospace;
    font-size: 22pt;
    color:#91ff37;
    text-align: center;
    width: 100%;
}

.box {
    width: 550px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: content-box;

    border-radius: 10px;
    background-color: #ffffff15;
    padding-bottom: 10px;
}

.rank {
    border-radius: 5px;
    height: 22pt;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    width: 60%;
    margin: 10px 0;
    outline: none;
    border: none;
    font-family: inherit;
    font-size: 15pt;

    background-color: #00000030;
    color: lawngreen;
}

.btn {
    all: unset;
    border-radius: 5px;
    height: 22pt;
    background-color: #91ff37;
    color: #1e1e1e;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    border-bottom: 5px solid #509902;
    transition-duration: 5ms;
    width: 60%;
    margin: 10px 0;
}

.btn:hover {
    cursor: pointer;
    transform: translate(0px,5px);
    background-color: #e68516;
    border-bottom: 5px solid #b46000;
}