@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    background-color: #000000;
    color: #a6a6a6;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

.light-font {
    color: #fafafa;
}

.dark-font {
    color: #000000;
}

.navbar-dark {
    background-color: #000000;
}

.height-100 {
    min-height: 100vh;
    padding-top: 5rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 3rem;
}

#top-banner {
    font-weight: 500;
}

.phone-icon:visited,
.phone-icon:hover {
    color: #000000;
}

.nav-item,
.nav-link {
    padding: 0.5rem 4rem;
    margin: auto;
}

.nav-item:hover {
    background-color: #111111;
    border-radius: 40px;
}

.spin {
    -webkit-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#wheel {
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-transition: all .7s;
    -o-transition: all .7s;
    transition: all .7s;
    max-height: 5rem;
}

#hero {
    background: url("../images/top_gear.jpg") no-repeat center center fixed;
    position: relative;
    min-height: 80vh;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 3rem;
}

#about div {
    background-color: rgba(0, 0, 0)
}

#services {
    background: url("../images/car.jpg") no-repeat center center fixed;
    position: relative;
    min-height: 80vh;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icons {
    display: inline-block;
}

.social a:visited {
    color: #fafafa;
}

.social a:hover {
    color: #ffbd4a;
}
