html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.div-container {
    width: 100%;
    display:flex;
    justify-content:center;
}

.pfp {
    width: 80px;
    height: 80px;
    border-radius: 1000px;
    object-fit: cover;
    margin: 20px;
    align-self: center;
}

.left {
    width: 70%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.left div p {
    margin-right: 10px;
    margin-left: 10px;
}

.right {
    width: 20%;
    height: max-content;
    margin-right: 40px;
    display: flex;
    justify-content:center;
    border-radius: 30px;
    box-shadow: 0px 0px 14px 1px #ababab;
}

.profile-upper-div {
    height: 100%;
    width: 90%;
    display: flex;
    flex-direction:column;
    align-items: center;
}

.profile-upper-div p {
    font-size: 20px;
    font-family: Arial;
}

.cars {
    width: 280px;
    height: max-content;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0px 0px 14px 1px #ababab;
    background-color: white;
}

.cars p {
    color: black;
    text-decoration: none;
}

.car-img {
    width: 100%;
    height: 35%;
    justify-self: flex-start;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.car-img-img {
    background-color: white;
    border-radius: 30px;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    justify-self: center;
}

.car-owner-link {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 15px;
    border: 1px solid;
    border-left-color: rgba(10, 88, 202, 0);
    border-right-color: rgba(10, 88, 202, 0);
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    text-decoration: none;
    transition: border-left-color .25s ease, border-right-color .25s ease, color .1s ease, background-color .2s ease;
}

    .car-owner-link:hover {
        background-color: rgba(0, 0, 0, 0.1);
        border-left-color: rgba(10, 88, 202, 1);
        border-right-color: rgba(10, 88, 202, 1);
        color: rgb(0, 68, 182);
    }