* {
    font-family: 'Varela Round';
    margin: 0px;
}

*::selection {
    background-color: #CDCCEB;
    color: white;
}

body {
    background-color: white;
    background-image: linear-gradient(24deg, #bdc1b6 , #92b5ca, #CDCCEB);
}

.navbar {
    z-index: 1;
    background-color: white;
    position: sticky;
    display: flex;
    flex-wrap: wrap;
    top: 0;
    align-items: center;
    min-height: 50px;
    box-shadow: 0px 4px 10px #a7a7a7;
    border-radius: 0px 0px 12px 12px;
}

.navbar * {
    margin-inline: 20px;
}

.navbar a {
    padding: 10px;
    margin-inline: 10px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    color: black;
    text-decoration: none;
}

.navbar a:hover {
    display: absolute;
    background-color: hsl(0, 0%, 91%);
}

.navbar a:active {
    display: absolute;
    background-color: hsl(0, 0%, 81%);
    color: white;
}

#active-tab {
    font-weight: 600;
    color: #63b1e2;
    text-decoration:underline;
}

.bottombar {
    background-color: white;
    vertical-align: bottom;
    display: flex;
    align-items: center;
    margin-top: 200px;
    height: 50px;
    box-shadow: 0px 4px 10px #a7a7a7;
    position: relative;
    border-radius: 12px 12px 0px 0px;
}

.section {
    width: auto;
    margin: 10px;
    margin-top: 36px;
    backdrop-filter: blur(1px);
    background-color: transparent;
    align-items: center;
    height: auto;
    border-color: white;
    border-style: solid;
    position: relative;
    border-radius: 12px;
    border-width: 4px;
    background-color: white;
}

.section-tab {
    position: relative;
    background-color: white;
    width: 200px;
    height: 30px;
    margin-top: -31px;
    margin-left: 30px;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
}

.section-tab h3 {
    padding-top: 3px;
    color: #63b1e2;
}

.section-tab-cl {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: -20px;
    margin-top: -18px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 10px 0 0 #ffffff;
}

.section-tab-cr {
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 220px;
    margin-top: -18px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 10px 0 0 #ffffff;
}

.section p {
    padding: 20px;
    font-size: 18px;
}

.section ol {
    padding-bottom: 20px;
    font-size:18px;
}

#domain-name {
    margin-left: auto;
    color: #63b1e2;
    font-style: italic;
}

#domain-name span{
    color: black;
    font-weight: 300;
}

#background {
    width: 100%;
}

#search-bar {
    border: 2px solid #ccc;
    border-radius: 30px;
    text-align: center;
}

#landing {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#welcome-text {
    color: white;
    text-align: center;
    vertical-align: middle;
    font-size: 60px;
    font-style: italic;
}

#logo {
    width: 100px;
    height: auto;
    margin-left: -20px;
}

#domain-name span {
    font-family: sans-serif;
}

.varela-round-regular {
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}

@media only screen and (max-width: 800px) {
    #domain-name {
        display: none !important;
    }
    #search-bar {
        display: none !important;
    }
    #logo {
        display: none !important;
    }
    .navbar {
        justify-content: center;
    }
}

@media only screen and (max-width: 380px) {
    .navbar {
        justify-content: space-around;
    }
    
    #welcome-text {
        margin-right: 5px;
        font-size: 53px
    }
}