@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400&display=swap");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: #f7f7f7;
    font-family: "Nunito", sans-serif;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

a {
    cursor: pointer;
}

button{
    cursor: pointer;
    font-family: "Nunito", sans-serif;
}

header{
    padding: 10px 0px 10px 0px;
    background-color: white;
    box-shadow: 0px 1px 2px rgb(0, 0, 0, 0.2);
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: space-around;
    position: fixed;
    top: 0;
    width: 100%;
}

header a{
    color: black;
    font-size: 1.1rem;
    font-weight: 600;
    transition: 0.1s;
}

.logo{
    display: flex;
    align-items: center;
}

.logo span{
    font-size: 1.8rem;
    margin: 10px 4px 9px 0px;
}

.logo p {
    font-size: 1.3rem;
}

.nav-button{
    display: inline-block;
    position: relative;
    margin: 10px 10px 10px 10px;
}

.nav-button::after{
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    margin-bottom: 1px;
    background-color: black;
    transform-origin: center;
    transition: transform 0.25s ease-out;
}