@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --text-color: #002d72;
    --bg-color: #e6e9f7;
    --bg-gradient: linear-gradient(90deg, rgba(0, 0, 255, 1) 0%, rgba(0, 0, 255, 1) 0%, rgba(255, 0, 189, 1) 100%);
    --bg-gradient-hover: linear-gradient(90deg, rgba(255, 0, 189, 1) 0%, rgba(0, 0, 255, 1) 100%, rgba(0, 0, 255, 1) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    font-family: 'Open Sans', sans-serif;
}

input {
    border-radius: 35px;
    width: 90%;
}

input:focus {
    box-shadow: 0 0 0 0;
    outline: 0;
}

p {
    font-size: 0.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-color);
    font-weight: 800;
}

.btn-style {
    background: var(--bg-gradient);
    border-radius: 35px;
    font-size: 0.7em;
    font-weight: 800;
    color: #fff;
    padding: 9px 28px;
    text-transform: uppercase;
}

.btn-style:hover {
    color: #fff;
    text-decoration: none;
    background: var(--bg-gradient-hover);
}

.navbar img {
    width: 12vw;
}

.navbar {
    background-color: var(--bg-color);
    position: fixed;
    z-index: 9;
    max-width: 75%;
}

.dropdown-item {
    font-size: 0.5em;
    font-weight: 700;
}

#nav-input {
    border: 2px solid #7500ff;
    border-radius: 35px;
    font-size: 0.7em;
    background-color: #fff;
    width: 100%;
    max-width: 25vw;
}

#search-input {
    border: 2px solid #7500ff;
    border-radius: 35px;
    font-size: 0.7em;
    background-color: #fff;
    width: 100%;
    max-width: 25vw;
}

#nav-btn {
    background: var(--bg-gradient);
    border-radius: 35px;
    font-size: 0.7em;
    font-weight: 800;
}

@media screen and (max-width: 500px) {
    #nav-input {
        display: none;
    }

    .navbar {
        position: static;
        max-width: 95%;
    }

    .navbar img {
        width: 20vw;
    }
}