@import url('https://fonts.googleapis.com/css?family=Bitter:400i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:500,900&display=swap');

body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#web-navbar {
    background-color: transparent;
    padding: 0 50px;
}

.navbar-brand label {
    font-weight: bold;
    font-family: 'Bitter', serif;
    font-size: 35px;
    cursor: pointer;
}

nav ul li a {
    font-size: 21px;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    color: white !important;
    margin-right: 8px;
}

li.active a {
    color: #FFD271 !important;
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.418) !important;
}

.dropdown-item:hover {
    background-color: transparent !important;
}

nav ul li a:hover {
    text-decoration: none !important;
    color: #FFD271 !important;
}

nav button.navbar-toggler:focus,
nav button.navbar-toggler:active {
    outline: none !important;
}

.web-header {
    background-image: url(img/banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #FFD271;
}

header h2 {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 70px;
}

header h1 {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 90px;
    font-weight: bold;
}

span {
    color: #FFD271;
}

.journey {
    background-image: url(img/journey.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    padding: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #FFD271;
    overflow: hidden;
}

section a {
    background-color: black;
    color: #FFD271;
    border: 2px solid #FFD271;
    border-radius: 5px;
    padding: 15px 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
}

section a:hover {
    background-color: #FFD271;
    color: black;
    box-shadow: 0 0 50px #FFD271;
    -webkit-box-reflect: below 1px linear-gradient(transparent, rgba(0, 0, 0, 0.13));
    transition: 0.1s;
    text-decoration: none;
}


section h1 {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-class {
    background-image: url(img/know\ us.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    padding: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    border-bottom: 1px solid #FFD271;
    overflow: hidden;
}

.about-webdev {
    background-image: url(img/web\ dev.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    padding: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #FFD271;
    overflow: hidden;
}

.contact-us {
    background-image: url(img/know\ more.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    padding: 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    border-bottom: 1px solid #FFD271;
    overflow: hidden;
}

.web-footer {
    background-color: #F67280;
    height: auto;
    overflow: hidden;
    padding: 50px;
}

.footer-logo {
    padding-top: 25px;
    border-right: 1px solid white;
}

.footer-content {
    border-right: 1px solid white;
}

footer h1 {
    font-family: 'Bitter', serif;
    font-size: 35px;
    font-weight: bold;
    color: white;
}

footer h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

footer p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: white;
}

::-webkit-scrollbar {
    background: #ddd;
    width: 14px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 10px #00000070;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(125deg, black, #FFD271);
}

::-webkit-scrollbar-button {
    background-color: #dfa529;
}

*::selection {
    background: rgb(221, 215, 215);
}

@media (max-width: 991px) {
    header h2 {
        font-size: 60px;
    }

    header h1 {
        font-size: 80px;
    }

    .web-footer {
        padding: 20px 50px;
    }

    .footer-logo {
        padding-top: 25px;
        border-right: none;
        border-bottom: 1px solid white;
        margin-bottom: 20px;
    }

    .footer-content {
        border-right: none;
        border-bottom: 1px solid white;
        margin-bottom: 20px;
    }

    footer h1 {
        text-align: center;
    }

    footer h3 {
        text-align: center;
    }

    footer p {
        text-align: center;
    }
}

@media (max-width: 700px) {
    #web-navbar {
        padding: 0 20px;
        /* background-color: rgba(0, 0, 0, 0.849); */
    }

    .navbar-brand label {
        font-size: 30px;
    }

    .journey {
        padding: 20px;
        height: 75vh;
    }

    .about-class {
        padding: 20px;
        height: 75vh;
    }

    .about-webdev {
        padding: 20px;
        height: 75vh;
    }

    .contact-us {
        padding: 20px;
        height: 75vh;
    }

    header h2 {
        font-size: 30px;
    }

    header h1 {
        font-size: 50px;
    }

    section h1 {
        font-size: 40px;
    }

    section a {
        padding: 10px 20px;
        margin-top: 10px;
        font-size: 15px;
    }

    footer h1 {
        font-size: 30px;
    }

    footer h3 {
        font-size: 17px;
    }

    footer p {
        font-size: 13px;
    }
}