
body {
    margin: 0;
    font-family:'Inter', sans-serif;
    background-color: rgb(12, 12, 12);
    color: white;
}

#loadingScreen {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(20, 20, 20, 0.7);

    display: flex;

    justify-content: center;
    align-items: center;

    z-index: 999;
    
    transition: opacity 0.3s ease;
}





#loadingSpinner {

    width: 60px;
    height: 60px;

    border: 6px solid gray;
    border-top: 6px solid rgb(43, 99, 255);

    border-radius: 50%;

    animation: spin 1s linear infinite;
}



@keyframes spin {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header {
    position: sticky;
    top: 0;
    background: rgb(12, 12, 12);
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
}

nav img {
    height: 60px;
}

a{
    color:white;
    transition: color 0.2s ease;
    text-decoration: none;
}


a:hover
    {
      color:rgb(43, 99, 255);
    }



/* HERO */
#top {
    position: relative;
}

#banner {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.2;
    filter: blur(5px);
}

#main {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(43, 99, 255);
    font-size: 50px;
    text-align: center;
}

/* LAYOUT */
#Essentials {
    display: flex;
    margin:0px 2vw;
    gap: 2vw;
    padding: 2vw;
}

#tables {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    width: 60%;
}




.card {
    background: rgb(20, 22, 34);
    border-radius: 20px;
    overflow: hidden;
    outline: 2px solid rgba(80, 80, 80, 0.3);
    height:230px;
    z-index:0;
}

.UText,
#SText {
    background: rgb(43, 99, 255);
    padding: 15px 20px;
    margin: 0;
}


ul {
    list-style: none;
    padding: 15px;
    margin-left: 1vw;
    margin-right: 1vw;
}

.FMatch {
    display: grid;

    grid-template-columns:
        4fr
        1fr
        1fr;

    align-items: center;

    gap: 20px;
}

.PMatch {
    display: grid;

    grid-template-columns:
        3fr
        1fr
        1fr
        1fr;

    align-items: center;

    gap: 20px;
}


#trophy {
    position:relative;
    left:10%;
    width: 150%;
    opacity: 0.2;
    z-index: -1;
}

#Container{
    z-index: 100;
    margin-top:150px;
    margin-bottom: -350px;
    font-size:50px;
    text-align: center;

    
}

#Container h1{
    z-index: 10;
    font-size:30px;
    margin-bottom: -50px;
}

#Stage {
    width: 40%;
    height:500px;
}

#Event{
    color:rgb(43, 99, 255);
}

@keyframes FadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
