* {
    padding: 0;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    color: white;
	font-family: 'Roboto', sans-serif;
}

:root {
    --bg: #15151e;
    --fg: #e10600;
}

body {
    background-color: var(--bg);
    width: 100vw;
    height: 100vh;

    display: grid;
    grid-template-rows: 20% 80%;
}

.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

input {
    width: 40vw;
    height: 3rem;
    border-radius: .5vw;
    background: none;
    border: 2px solid var(--fg);
    outline: none;
    padding: 0 1rem;
    font-size: 125%;
}

#container {
    width: 80%;
    height: 80%;
    border: 2px solid var(--fg);
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
}

.driverContainer {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

img {
    width: 10rem;
    height: auto;
}

p {
    text-align: center;
}

.loading {
    justify-content: center;
    align-items: center;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid #FFF;
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 