nav {
    display: none;
}

#hamburger {
    display: block;
    font-size: 5vw;
    cursor: pointer;
    color: white;
    margin-left: auto;
    margin-right: 2.5vw;
    align-self: center;
}

#mobile-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    justify-content: flex-start;
    align-items: center;
}

#mobile-container.active {
    display: flex;
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    background: rgba(50, 45, 40, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vh;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

#mobile-menu.active {
    display: flex !important;
}

#mobile-menu .button {
    padding: 0.75vh 1.5vh;
    font-size: 3.5vw;
    border-radius: 1vh;
}

#logo {
    height: 7.5vw;
    width: 7.5vw;
}

#text-link {
    margin-left: auto;
    font-size: 2.5vw;
}

@media (max-width: 1100px) {
    main {
        display: flex;
        width: 100vw;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 1.5vw;
        row-gap: 1.5vw;
    }
    
    #champion {
        display: flex;
        height: auto;
        width: 22vw;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    #champion h4 {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 2.25vw;
        background-color: black;
    }
}