@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: inter;
    font-weight: 250;
    font-size: 1.1rem;
    --navBarTranspacparency: 0.8;
    transition: ease-in-out 100ms;
}

body {
    background-color: black;
    width: 100vw;
    min-height: 100vh;
}

.body {
    /* background-color: white; */
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: start;
}

.navbar {
    background-image: linear-gradient(to right,
            hsla(170, 100%, 10%, var(--navBarTranspacparency)),
            hsla(185, 100%, 10%, var(--navBarTranspacparency)),
            hsla(200, 100%, 10%, var(--navBarTranspacparency)));
    background-color: hsla(193, 100%, 50%, 0.2);
    backdrop-filter: blur(1vh);
    position: fixed;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
}

.navTextDiv{
    /* background-color: red; */
    height: 100%;
    width: fit-content;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 2vh;
    overflow-y: hidden;
}

.navTextDiv:hover{
    background-color: hsla(200, 100%, 10%, 0.5);
    cursor: pointer;
    text-decoration: underline;
}

#navText{
    text-shadow: none;
    font-size: 1.5rem;
    font-weight: 350;
    text-decoration: inherit;
}

.text {
    color: white;
    font-size: 1.1rem;
    font-weight: 250;
    text-align: center;
    text-shadow: 0vh 0vh 2vh black;
}

a {
    text-decoration: underline;
    color: inherit;
}

.div1 {
    background-color: black;
    width: 90%;
    height: fit-content;
    padding: 1vw;
    border-radius: 2vw;
    margin-top: 15vh;
    margin-bottom: 12vh;
    box-shadow: 0 0 5vh 5vh hsla(245, 100%, 60%, 20%);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background-image: linear-gradient(180deg,
            hsla(200, 100%, 20%, 1) -10%,
            black 110%);
}

#div1Title {
    /* font-size: 5rem; */
    font-size: 5rem;
    font-weight: 500;
    margin-top: 3vh;
    /* background-color: red; */
    text-shadow: none;
}

#div1Text {
    font-size: 1.5rem;
    max-width: 60vw;
    margin-top: 5vh;
    margin-bottom: 6vh;
    /* background-color: blue; */
    text-shadow: none;
}

.div2 {
    background-color: black;
    width: 90%;
    min-height: 20vh;
    height: fit-content;
    padding: 1vw;
    border-radius: 2vw;
    margin-bottom: 10vh;
    box-shadow: 0 0 5vh 5vh hsla(245, 100%, 60%, 20%);
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: start;
    row-gap: 4vh;
    background-image: linear-gradient(90deg,
            hsla(170, 100%, 20%, 0.5) 0%,
            rgba(0, 0, 0, 0) 20%,
            rgba(0, 0, 0, 0) 80%,
            hsla(200, 100%, 20%, 0.5) 100%),
        linear-gradient(0deg,
            rgba(0, 0, 0, 0) -10%,
            black 30%,
            black 65%,
            rgba(0, 0, 0, 0)110%),
        linear-gradient(0deg,
            hsla(170, 100%, 20%, 1),
            hsla(185, 100%, 20%, 1),
            hsla(200, 100%, 20%, 1));
}

.infoCard {
    background-color: black;
    min-width: min-content;
    width: 30%;
    min-height: 10vh;
    flex-basis: auto;
    border-radius: 2vh;
    background-image: linear-gradient(to top,
            hsla(210, 100%, 10%, 1),
            black,
            black,
            hsla(210, 100%, 10%, 1));
    padding: 1vw;
}

.infoTitle {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 0vh;
    margin-bottom: 2vh;
}

.links{
    line-height: 2rem;
}

@media screen and (max-width: 800px) {
    #div1Title {
        font-size: 3rem;
    }

    #div1Text {
        font-size: 1.2rem;
        max-width: 75vw;
    }

    .div1 {
        box-shadow: 0 0 6vh 4vh hsla(250, 100%, 60%, 50%);
    }

    .div2 {
        box-shadow: 0 0 6vh 4vh hsla(250, 100%, 60%, 50%);
    }
}

@media screen and (max-width: 1200px) {
    .infoCard {
        width: 47%;
    }
}

@media screen and (max-width: 600px) {
    .infoCard {
        width: 97%;
    }
}