body {
    font-family: 'Work Sans', sans-serif;
    
    padding: 0;
    margin: 0;
    margin-bottom: 3rem;
    
    background: #151515;
}

#head-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    width: 100%;
    
    padding: 0;
    margin: 0;
    margin-top: 3rem;
    margin-bottom: 3rem;

    gap: 2rem;
}

#f1-logo {
    height: 2.5rem;
    pointer-events: none;
    user-select: none;
}

#head-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#title {
    color: #ffffff;

    padding: 0;
    margin: 0;

    font-weight: 600;
    font-size: 3rem;
}

#sub-title {
    color: #ffffff51;

    display: flex;
    justify-content: center;

    padding: 0;
    margin: 0;

    font-weight: 600;
    font-size: .8rem;
}

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

    width: 100%;

    padding: 0;
    margin: 0;
}

#all-drivers {
    display: flex;
    flex-direction: column;

    margin-top: 1.5rem;
    gap: 1.5rem;

    opacity: 1;

    transition: all .3s ease;
}

#all-drivers.hidden {
    transform: translateX(10px);
    opacity: 0;
}

#predict-button-container {
    display: flex;
    align-items: center;

    padding-top: 1.5rem;
}

#prediction-section {
    background: #303030;

    position: relative;
    display: flex;

    width: 50rem;
    height: 22rem;

    border-radius: 1rem;

    opacity: 1;

    transition: all 1s ease;

    overflow: hidden;

    user-select: none;
}

#prediction-section.hidden {
    transform: translateY(-1rem);
    opacity: 0;
}