@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-header {
    width: 100%;
    background:linear-gradient(to top, rgba(0,0,0,0.8),rgba(0,0,0,0.8)), url(araba.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
}

.container {
    width: 90vw;
    margin: 0 auto;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 4rem;
    font-weight: bold;
    float: left;
}

.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 10%;
}

.navbar-list {
    list-style: none;
    display: flex;
    padding: 30px;
}

.navbar-list-item {
    margin-right: 50px;
    
}

.navbar-list-item a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    border-radius: 10px;
    transition: .5s;
}

.navbar-list-item a:hover {
    background-color: #D1512D;
}

.search {

}

.srch {
    height: 30px;
    background: transparent;
    border: 2px solid #D1512D;
    border-right: none;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.btn {
    height: 30px;
    background: #D1512D;
    border: 2px solid #D1512D;
    color: #fff;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}

.btn:focus {
    outline: none;
}

.srch:focus {
    outline: none;
}

.content {
    width: 20vw;
    height: auto;
    margin-top: 70px;
    margin-left: 50px;
    position: relative;
}

.section-title {
    font-size: 4.5rem;
    color: #76549A;
}

.content p {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

.word {
    color: #D1512D;
}

.btn-2 {
    display: inline-block;
    margin-top: 5%;
    margin-left: 30%;
    background: transparent;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 10px;
    transition: .5s;
}

.btn-2:hover {
    background-color: #D1512D;
}

.form {
    width: 25vw;
    height: 70vh;
    position: absolute;
    left: 65%;
    bottom: 10%;
    background: linear-gradient(to top, rgba(0,0,0,0.3),rgba(0,0,0,0.3));
    position: absolute;
    border-radius: 10px;
    padding: 25px;
}

.form h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
    background-color: #D1512D;
    padding: 10px;
    border-radius: 10px;
}

.form input {
    width: 20vw;
    height: 5vh;
    background: transparent;
    border-bottom: 2px solid #76549A;
    border-top: none;
    border-left: none;
    border-right: none;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 30px;
}

.form input:focus {
    outline: none;
}

::placeholder {
    color: #fff;
}

.btn-3 {
    display: inline-block;
    margin-top: 5%;
    margin-left: 30%;
    background-color: #D1512D;
    text-decoration: none;
    color: #fff;
    padding: 15px;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 10px;
    transition: .5s;
}

.btn-3:hover {
    background-color: #76549A;
}

.link {
    margin-top: 15px;
    color: #fff;
    text-align: center;
    font-size: 1.3rem;
}

.link a {
    text-decoration: none;
    color: #76549A;
}

.social-media {
    text-align: center;
    color: #fff;
}

.icons {
    text-align: center;
}

.fa {
    padding: 10px;
    font-size: 10px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 25%;
}

.fa:hover {
    opacity: 0.7;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}
  
.fa-twitter {
    background: #55ACEE;
    color: white;
}

