@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    max-width: 100%;
    max-height: 100%;
    overflow-x: hidden;
    position: relative;

}

.textBox span {
    background-color: hsl(230, 29%, 20%);
    font-weight: 700;
    color: white;
    padding: 2px 10px;
    border-radius: 50px;
}

.textBox {
    padding-top: 150px;
}

.textBox,
#box {
    padding-left: 50px;
}

.firstPara {
    letter-spacing: 5px;
    color: hsl(231, 7%, 65%);
}

.textBox h1 {
    font-weight: 700;
    font-size: 100px;
    color: hsl(230, 29%, 20%);
}

.secondPara {
    color: hsl(230, 11%, 40%);
    font-size: 22px;
    width: 270px;
}

.btn {
    color: #fff;
    font-weight: 700;
    background-color: hsl(0, 100%, 68%);
    letter-spacing: 2px;
    padding: 15px 30px;
}

.thirdPara {
    display: inline;
    letter-spacing: 5px;
    color: hsl(231, 7%, 65%);
    margin-left: 20px;
}

nav {
    z-index: 5;
    margin-top: 50px;
}


.navbar-brand {
    margin-left: 50px;
}

.nav-link {
    color: hsl(230, 29%, 20%);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.login a {
    color: hsla(235, 7%, 65%, 0.904);
}

.nav-item {
    margin-left: 70px;
}

ul {
    margin-right: 150px;
}

.dot {
    font-size: 50px;
    color: hsla(235, 7%, 65%, 0.452);
    position: relative;
    bottom: 30px;
    cursor: default;
}

.shape {
    width: 1000px;
    height: 450px;
    background-color: hsl(207, 33%, 95%);
    position: absolute;
    top: -140px;
    right: 0;
    z-index: -1;
    border-bottom-left-radius: 70px;

}

.right {
    position: relative;
    background-image: url(images/illustration-devices.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 1000px;
}


.btn:hover {
    opacity: .8;
    color: #fff;
}

.nav-link:hover {
    color: hsl(230, 29%, 20%);
    text-decoration: underline;
}

.login a:hover {
    color: hsla(235, 7%, 65%, 0.904);
}

@media only screen and (min-width: 376px) {
    hr {
        display: none;
    }

    
}

@media only screen and (max-width: 376px) {
    .navbar-brand {
        margin-left: 10px;
    }

    .shape {
        width: 250px;
        height: 550px;
    }

    .right {
        width: 375px;
        height: 500px;
        background-image: url(images/illustration-devices.svg);
        background-size: 500px;
        background-position: left;
        position: absolute;
        top: -30px;
    }

    .left {
        position: absolute;
        top: 250px;
    }

    .textBox h1 {
        font-weight: 700;
        font-size: 40px;
        color: hsl(230, 29%, 20%);
    }

    .btn {
        color: #fff;
        font-weight: 700;
        background-color: hsl(0, 100%, 68%);
        letter-spacing: 2px;
        padding: 9px 15px;
    }

    .thirdPara {
        display: inline;
        letter-spacing: 4px;
        color: hsl(231, 7%, 65%);
        margin-left: 20px;
    }

    ul {
        background-color: #fff;
        width: 350px;
        height: 250px;
        text-align: center;
    }

    li a {
        margin-right: 80px;
    }

    .dot {
        display: none;
    }

}

/*
### Neutral

- Very Dark Blue: hsl(230, 29%, 20%)
- Dark Grayish Blue: hsl(230, 11%, 40%)
- Grayish Blue: hsl(231, 7%, 65%)
- Light Grayish Blue: hsl(207, 33%, 95%)
*/