@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

@media (max-width: 480px) {
    .content-box h2 {
        font-size: 1rem;
    }

    .linkbtns button img {
        width: 25vw;
        height: auto;
    }

    .footer {
        font-size: 14px;
        text-align: center;
    }
}

body {
    background: url("https://i.redd.it/86yagye25g841.png") fixed;
    background-size: 100wv 100wh;
    background-position: center;
    color: white;
    font-family: "Oswald", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    background-color: black;
}

html {
    scrollbar-width: none;
}

.header {
    background-color: rgba(0, 0, 0, 0.4);
    height: 10vh;
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    flex-direction: row;
    position: sticky;
    gap: 4rem;
    padding-left: 2vw;
    width: 107vw;
    z-index: 1000;
    top: 0;
    left: 0;
}

.header button {
    height: 10vh;
    font-size: calc(10px + 1vw);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.10s linear;
    background-color: transparent;
    padding: 5px;
    max-width: 100%;
    position: relative;
    font-family: "Oswald", sans-serif;
}

.header h1 {
    padding-right: 1vw;
}

.header button::before {
    content: "";
    position: absolute;
    bottom: 10%;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.grid-con {
    display: grid;
    width: 100vw;
    height: 100vh;
    grid-template-columns: repeat(4, minmax(25vw, auto));
    grid-template-rows: repeat(3, minmax(30vh, auto));
    justify-content: start;
   /* position: relative; */
    transition: 0.25s linear;
}

.content-box {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    transition: 0.25s linear;
    border-radius: 10px;
    flex-direction: column;
    padding: 20px;
}

.content-box h2 {
    font-size: 1.3rem;
}

.header button:hover::before {
    width: 100%;
    left: 0;
}

/* .header img {
    width: 10vw;
    height: 10vw;
    object-fit: contain;
    border-radius: 50%;
    user-select: none;
    -webkit-user-drag: none;
} */

#team img {
  width: clamp(70px, 20vw, 120px);
  height: auto;
  border-radius: 50%;
}

.footer {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    display: flex;
    padding: 2vh;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.linkbtns {
    display: flex;
    flex-direction: row;
}

.linkbtns button{
    background-color: transparent;
    border: none;
    color: white;
}

.linkbtns button img {
    height: 14vh;
    width: 14vw;
    object-fit: contain;
    border: none;
    filter: invert(1);
    transition: 0.25s linear;
}

.linkbtns button img:hover {
    opacity: 0.5;
    cursor: pointer;
}
