* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background-image {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("./image/space.webp");
    background-position: center center;
    background-size: cover;
}

#tesla-logo {
    margin: 5% auto;
    align-items: center;
    width: 45%;
}

.main {
    width: 80%;
    height: auto;
    display: flex;
    border-radius: 50px;
    box-shadow: 0px 0px 100px rgb(0, 0, 0);
}

#modelle {
    width: 100%;
    padding: 3% 0;
    font-size: 21px;
    color: white;
    word-break: break-word;
}

h2 {
    color: white;
}

#left {
    float: left;

}

#right {
    float: right;
}

#geschichte {
    font-size: 21px;
    padding-top: 10%;
}

.navigation {
    background-color: rgba(0, 0, 0, 0.7);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 50%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.images {
    border-top-right-radius: 15%;
    border-bottom-right-radius: 15%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.images img {
    max-width: 100%;
}

.exterior {
    border-top-right-radius: 50px;
}

.interior {
    border-bottom-right-radius: 50px;

}

.bottom-bar {
    width: 100%;
    padding: 1% 1%;
    position: absolute;
    bottom: 0;
}

#arrow-left {
    background-color: black;
    border-radius: 100%;
    width: 45px;
    display: flex;
    float: left;
    position: relative;
}