/* get fonts from https://fonts.google.com */
<style>
  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
</style>
/* Apply below universal selector to reset all default box settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

h1 {
    font-size: 40px;
    font-weight: 500;
}

p {
    
    font-style: 14px;
    font-weight: 400;
    padding: 6px 24px 16px 24px;
}

.banner-wrap {
    background-image: url(https://digitalassets.tesla.com/tesla-contents/image/upload/f_auto,q_auto/Homepage-Model-S-Desktop-LHD-6.22.jpg);
    background-size: cover;
    background-repeat: no no-repeat;
    background-position: center;
    height: 100vh;
    width: 100vw;;
}

nav {
    display: flex;
    justify-content: space-between;
    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;
    cursor: pointer;
}

main {
   text-align: center;
   height: calc(100vh - 56px);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.title-section {
    margin-top: calc(155px - 56px);
}

.actions-area {
    margin-bottom: 100px;
}

button {
    margin: 0;
    padding: 0;
    color: none;
    background: none;
    background-color: yellow;
    width: 210px;
    height: 40px;
    padding: 7px 26px;
    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;
}