body {
    background-color: #232323;
    font-family: Poppins;
    color: white;
}

#search-div{
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: end;
}

#search-form{
    display: flex;
}

#search-field{
    height: 60px;
    width: 700px;
    font-family: Poppins;
    font-size: 15px;
    color: white;
    background-color: #232323;
    border-radius: 10px;
    border: 1px #1a1a1a solid;
    padding: 10px;
    margin-right: 10px;
}

#search-submit{
    height: 60px;
    width: 60px;
    background-color: #232323;
    border-radius: 10px;
    border: 1px #1a1a1a solid;
    padding: 10px;
    font-family: Poppins;
    font-size: 15px;
    color: white;
}

#search-submit:hover{
    cursor: pointer;
}

.favourites-div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.favourites-link{
    transition: 0.5s;
    margin: 20px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 4px #1f1f1f;
}

.favourites-link:hover{
    transition: 0.5s;
    transform: scale(1.1);
}

#motorsport-calendars{
    margin-top: 9%;
    display: flex;
}

.motorsports-calendar-countdown{
    width: 20%;
    background-color: #1a1a1a;
}

#greeting-div{
    font-size: 50px;
    font-weight: bold;
}

#top-flexbox{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25%;
}