* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #101922;
    color: white;
    position: relative;
    z-index: 2;
}

.navbar {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    position: relative;
    border-bottom: 2px solid #ffffff1a;
}

.navbar ul {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.avatar {
    display: flex;
    gap: 20px;
}

.avatar img {
    height: 45px;
    border-radius: 50%;
    align-self: center;
}
.avatar button {
    background-color: #103458;
    color: #1173D4;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 15px;
    font-size: 18px;
    cursor: pointer;
}
.logo img {
    width: 38px;
}

button {
    padding: 10px;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: .75rem;
    font-weight: 600;
    transition: all .2s;
}

a {
    text-decoration: none;
    font-weight: 500;
}

li a {
    color: #94a3b8;
    transition: all .3s;
}

a:hover {
    color: #1173D4;
}

input {
    font-size: 16px;
    color: white;
    border: none;
    outline: none;
}

footer {
    text-align: center;
    padding: 1.6rem 0;
    margin-top: 4rem;
    border-top: 1px solid #ffffff1a;
}