@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

header {
    width: 100%;
    height: 7rem;
}

nav {
    width: 100%;
    height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 70px;
}

#header-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#header-menu a {
    text-decoration: none;
    color: #323232;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 10px 10px;
}

#header-menu a:first-child {
    color: blueviolet;
}

#header-menu a:hover {
    color: blueviolet;
}

#logo-text {
    text-decoration: none;
    color: black;
    font-size: 1.5em;
    font-weight: bolder;
}

.span-logo-text {
    color: blueviolet;
}

#logo-text:hover .span-logo-text {
    color: black;
}

.span-text {
    color: blueviolet;
}

#s-form {
    position: relative;
    margin: 10px 10px;
}

#s-input {
    width: 100%;
    height: 100%;
    display: block;
    padding: 5px 25px 5px 7px;
    border-radius: 12px;
    border: 2px solid gray;
    outline: none;
}

#s-input:focus, #s-input:hover {
    border: 2px solid blueviolet;
}

#s-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 100%;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    color: black;
    font-size: 0.8rem;
}

#s-btn:hover {
    color: blueviolet;
}

.fa-regular.fa-moon {
    font-size: 1rem;
    margin: 10px 10px;
}