html {
  font-size: 20px;
}

@media (min-width: 768px) {
  html {

    font-size: 20px;
  }
}

.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: lightgrey;
    width:100vw;
}

.car-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 20%));
    gap: 20px;
    padding: 20px;
    justify-content:center;
}


.car-item {
    background: grey;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   align-items:center;

}

    .car-item:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .car-item img {
        width: 100%;
        height:200px;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .car-item a {
        display: inline-block;
        margin-top: 10px;
        padding: 8px 12px;
        background-color: dimgrey;
        color: #fff;
        text-decoration: none;
        font-family: 'Times New Roman';
        border-radius: 4px;
    }

        .car-item a:hover {
            background-color:black;
        }


.profile-container {
    margin-top: 30px;
    font-size:25px;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 20px; 
    min-width: 600px;
    background-color: #f9f9f9; 
    font-family: 'Times New Roman';
   display:flex;
   flex-direction:column;
 justify-content:center;
 align-items:center;
}

.Back-button {
    width: 250px;
    height: 60px;
    text-decoration: none;
    font-size: 30px;
    color:black;
    background-color:grey;
    border-radius: 15px;
}
.Pfp {
    border-radius:20px;
    width:200px;
    height:110px;
}
.column{
    display:flex;
    width:100%;
    justify-content:center;
    align-items:center;
    flex-direction:row;
}
.namn{
    margin-right:20px;
}
.containers-container{
    width:100vw;
    display:flex;
    justify-content:center;
    align-items:center;
}




