html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #1C0F0F;
}

.navbar-brand{
}
.container {
    background-color: #3B0D0D;
    padding-top: 20px;
}
.left {
    color: white;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(27% - 1rem);
    border-radius: 20px;
    background-color: black;
    padding-bottom: 30px;
    transition: all 0.5s ease-in-out;

}

.left:hover {
    transform: scale(1.05);
}
.right {
    display: flex;
    flex-direction: column;
    max-height: fit-content;
    margin-right: 10%;

    width: 100%
}

.ProfileP{
   color: white;
   font-size: 20px

}

.Profile{
    display: flex;
    flex-direction: column;
    

}
.pb-3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

header{
    background-color: black;
}

.Car {
    display: flex;
    justify-content: center;
}

.CarName{
    font-size: 20px;
    display: flex;
    justify-content:center;
}
.CarPicture{
    width: 100%;
    height: 200px;
    object-fit: cover;
    
}

.Profile{
    height: 100%;
    width: 100%;
    padding-top: 10px;
}

    .Profile img {
        width: 100px;
        height: 85px;
        border-radius: 200%;
        transition: all 0.5s ease-in-out;
    }
        .Profile img:hover {
            transform: scale(1.05);
        }
