.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    box-shadow: 0 4px 5px -5px black;
}

.nav-logo {
    width: 40px;
    height: 40px;
}

.hero {
    background-image: url(./_assets/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    backdrop-filter: blur(100px);
    z-index: -1;
}

.content {
    height: 85vh;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.content::-webkit-scrollbar {
    width: 12px;
}

.content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}

.content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #64748b6a
}

.fetch-data {
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem
}

.fetch-data-name {
    justify-content: start;
    text-align: left;
}

input:focus {
    outline: none;
    border: none;
}

.team-logo {
    margin: auto;
    width: 75px;
}

.team-title h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 2rem;
}

.team-title h2:hover {
    color: red;
    text-decoration: line-through;
    cursor: pointer;
}

.match-cont, .elo-cont {
    margin: 0.5rem;
    border-radius: 1rem;
}

.search-icon {
    padding: 0.5rem;
    background-color: #64748B;
    border-radius: 2rem;
    cursor: pointer;
}
