@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');

:root {
    --font-family: 'Montserrat', sans-serif;

    --text-color: #FFFFFF;
    --danger-color: #D02525;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    background: rgb(42,50,65);
    background: -moz-linear-gradient(180deg, rgba(42,50,65,1) 0%, rgba(83,95,114,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(42,50,65,1) 0%, rgba(83,95,114,1) 100%);
    background: linear-gradient(180deg, rgba(42,50,65,1) 0%, rgba(83,95,114,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2a3241",endColorstr="#535f72",GradientType=1);
    color: var(--text-color);
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    
}

.maintenance {
    background-image: url('/images/maintenance-bg.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    background-color: var(--danger-color);
    border-radius: 99px;
    padding: 1.25rem 3.5rem;
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
}

.title-leave {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.text {
    font-size: 3.75rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    line-height: 1.25;
}

.text span {
    font-weight: 700;
}

.icon {
    margin-top: -0.25rem;
}

.leave-car {
    height: 40rem;
    margin-top: -9rem;
}

