/* https://fonts.google.com/ */
/* https://www.netlify.com/ */
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

*{
    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-size: 15px;
    font-weight: 400;
    padding: 5px 23px 15px 23px;
}
.banner-wrap {
    background-image: 
    url(./assets/banner.jpg);
    background-size: cover;
    background-repeat: 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(164px - 130px);
}
.actions-area {
    margin-bottom: 100px;
}
button {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    background-color: #d8d9da;
    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;
}
