* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    /*background-color: grey;*/
    background-image: url('Images/Background.png');
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
}

header {
    width: 1080px;
    height: 180px;
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    position: relative;
    /*background-color: green;*/
}

.header-image {
    width: 1080px;
    height: 180px;
    margin: auto;
    position: relative;
    background-image: url('Images/Banner_2.png');
}

.main-content {
    width: 1080px;
    margin: 10px auto;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*background-color: blue;*/
}

.dealership {
    margin: 10px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    position: relative;
    /*background-color: red;*/
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
}

.highlight {
    width: 240px;
    height: 180px;
    margin: auto;
    background-color: white;
}

.links {
    width: 400px;
    
    margin: auto;
    /*background-color: yellow;*/
    color: white;
}

.links a {
    font-size: 28px;
    color: white;
}
