*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}

/*Styling starts here */

body{
    font-family:  sans-serif;
    font-size: 1.3rem;
    text-align: center;
    font-weight: bold;
}
nav{
    background: white;
}

nav ul{
    min-height: 12vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    width: 70%;
    margin: auto;
}
nav ul li{
    list-style: none;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight:bold;
    font-family:sans-serif;
    padding: 0 2rem;
}
a{
    text-decoration: none;
    color: black;
}
nav ul h1{
    font-weight: 400;
    color: #cf1b1b;
}
nav ul h1{
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
}
.hero{
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(./silver-and-black-laptop-computer-1229861.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.hero h2{
    color: white;
    font-size: 3.4rem;
    font-weight: 300;
    text-align: center;
    padding: 4rem;
    font-family: 'Oswald', sans-serif;
}
button{
    padding: 1.2rem 4rem;
    background: #a07f32;
    border: none;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: white;
    font-weight: 300;
    font-family: 'Oswald';
    cursor: pointer;
}
.hero02{
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    background: rgb(27, 27, 27);
    color: white;
}
.intro-img{
    flex: 1 1 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.intro-img img{
    height: 30rem;
    border: rgb(212, 203, 203) 2px solid;
    margin-bottom: 2rem;
}
.intro-text{
    flex: 1 1 20rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.intro-text h2{
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 400;
}
.intro-text p{
    font-size: 1.3rem;
    padding: 0rem 2rem;
    text-align: center;
    font-weight: bold;
}
.intro-text h3{
    padding: 6rem 0rem;
    font-size: 2rem;
}
.icons img{
    height: 2.5rem;
    border: none;
}
.icons ul{
    display: flex;
    margin-top: 2rem;
}
.icons ul li{
    list-style: none;
    padding: 0rem 3rem;
}

/* Media Query */

@media only screen and (max-width: 712px) {
    body {
      font-size: 1rem; 
    }
    nav ul{
        flex-wrap: wrap;
    }
    nav ul h1{
        order: 1;
        padding: 2rem 3rem;
    }
    nav ul li{
        order: 2;
        padding: 2rem;
    }
    .hero h2{
        font-size: 3rem;
        text-align: center;
    }
    button{
        padding: 1rem;
        font-size: 1.2rem;
    }
    .intro-img{
        padding: 3rem 0rem;
    }
    .intro-text h2{
        padding: 0rem 2rem;
    }
}