@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    display: flex;
    flex-direction: column;
    background-color: #080808;
}

nav {
    width: 100%;
    height: 60px;
    background-color: #0E0E0E;
    display: flex;
    align-items: center;
    flex-direction: row;
}

nav img {
    width: 55px;
    height: 50px;
}

.Splitter {
    height: 45px;
    width: 3px;
    background-color: #212121;
}

nav button {
    font-family: "Montserrat", sans-serif;
    height: 50px;
    width: 80px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 13px;
}

.TopSearchDiv {
    width: 180px;
    border-radius: 10px;
    height: 45px;
    margin-left: auto;
    margin-right: 10px;
    border: #171717 3px solid;
    background-color: #111111;
}

.SearchDiv {
    height: inherit;
    width: inherit;
}

.SearchDiv input {
    color: white;
    height: inherit;
    width: inherit;
    background-color: transparent;
    border: none;
    text-align: center;
}

.SearchDiv input:active {
    stroke: none;
    outline: none;
}

h1 {
    text-align: center;
    color: white;
}