* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: aliceblue;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
}

.navbar-home-icon {
    border-radius: 9999px;
    background-color: #202020;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.navbar-input {
    height: 48px;
    display: flex;
    align-items: center;
    background-color: #202020;
    border-radius: 64px;
    padding-left: 12px;
    padding-right: 20px;
    gap: 12px;
    width: 450px;
}

.navbar-center {
    display: flex;
    gap: 9px;
}

.input-search {
    background: none;
    border: none;
    width: 100%;
    color: white;
}

.input-search :focus {
    outline: none;
}

button {
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 64px;
    border: none;
    font-weight: 600;
}

button:hover {
    transform: scaleX(1.05);
}

.navbar-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-container {
    display: flex;
    gap: 10px;
    height: 100vh;
    margin-top: 20px;
}

.sidebar {
    width: 400px;
    background-color: #202020;
    border-radius: 8px;
    padding-left: 10px;
    padding-top: 10px;
}

.main {
    width: 100%;
    background-color: #202020;
    border-radius: 8px;
    padding-left: 10px;
    padding-top: 10px;
}