/* Google Fonts  */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,400;0,700;1,400&family=Raleway:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* base design  */
body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* reuse  */
.highlight {
    color: yellow;
}

/* nav design  */
header {
    height: 100vh;
    background-image: url('../images/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, .5);
    background-blend-mode: overlay;
}

nav {
    display: flex;
    justify-content: space-between;
    height: 120px;
    align-items: center;
}

nav>.logo img {
    height: 70px;
}

nav>ul {
    display: flex;
    list-style: none;
}

nav>ul>li {
    margin: 5px;
}

nav>ul>li:hover {
    background-color: blue;
    padding: 5px;
    transition: 1s;
}


nav>ul>li>a {
    text-decoration: none;
    color: whitesmoke;
    padding: 10px 10px;
}

/* hero design start  */
.hero {
    height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.heroLeft {
    color: white;
}

.hero>.heroLeft>h1 {
    font-size: 50px;
}

.mainButton{
    outline: 0;
    border: 0;
    padding: 15px 20px;
    background-color: yellow;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 5px 5px 1px green;
    position: relative;
    top: 0;

}
.mainButton:active{
    top: 5px;
    box-shadow: 0 0 0;
}

.heroRight img {
    width: 100%;
}