@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-size: 40px;
    font-weight: 500;
}




.banner-wrap {
    background-image: url("https://digitalassets.tesla.com/tesla-contents/image/upload/f_auto,q_auto:best/Model-S-homepage-desktop");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    width: 100vw;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    padding: 0 32px;
}

.nav-item {
    padding: 5px 15px;
    cursor: pointer;
}

.nav-item:hover {
    background-color: #d8d9da;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
}

.logo {
    height: 24px;
    width: 120px;
}

main {
    text-align: center;
    height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title-section {
    margin-top: calc(164px - 56px);
}

.actions-area {
    margin-bottom: 100px;
}

button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    background-color: yellow;
    width: 264px;
    height: 40px;
    padding: 7px 27px;
    border-bottom-left-radius: 9999px;
    border-bottom-right-radius: 9999px;
    border-top-left-radius: 9999px;
    border-top-right-radius: 9999px;
    margin-right: 15px;
    cursor: pointer;
}

.btn-dark {
    background-color: #191d21;
    color: white;
}

.btn-light {
    background-color: #e4e4e2;
    color: #191d21;
}
