@font-face {
    font-family: 'ch-light'; /* Give your font a descriptive name */
    src: url('../fonts/cooper-hewitt-light.otf') format('opentype');
    font-weight: normal; /* Define the weight of this font file */
    font-style: normal;  /* Define the style of this font file */
    font-display: swap;  /* Optional: Controls how the font loads and renders */
}

@font-face {
    font-family: 'ch-regular'; /* Give your font a descriptive name */
    src: url('../fonts/cooper-hewitt-book.otf') format('opentype');
    font-weight: normal; /* Define the weight of this font file */
    font-style: normal;  /* Define the style of this font file */
    font-display: swap;  /* Optional: Controls how the font loads and renders */
}

@font-face {
    font-family: 'ch-thin'; /* Give your font a descriptive name */
    src: url('../fonts/cooper-hewitt-thin.otf') format('opentype');
    font-weight: normal; /* Define the weight of this font file */
    font-style: normal;  /* Define the style of this font file */
    font-display: swap;  /* Optional: Controls how the font loads and renders */
}

body, html {
    padding: 0px;
    margin: 0px;

    height: 100%;
}


body {
    background: radial-gradient(
        at top left, 
        #9698e2 0%,
        #8e91ea 10%,
        Blue 120% /* Then it smoothly fades to Light Blue by the edge */
    )
}

#topHeader {
    height: 13%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin: 0px;
    padding: 0px;
}

.headerButtonDiv {
    background-color: transparent;
    margin: 0px 70px;
}

.headerButton {
    padding: 0px;
    font-family: 'ch-regular';
    border: 0px;
    font-size: 20px;
    margin: 0px;
    margin-bottom: 6px;

    background-color: transparent;
    height: 40px;
    color: white;
    transition: color 0.4s ease;
    cursor: pointer;
}

.headerButtonLine {
    height: 1px;
    width: 50px;

    margin: 0px auto;
    background-color: white;
    transition: background-color 0.4s ease;
}

.headerButtonDiv:hover .headerButton {
    color: rgb(24, 24, 24);
}

.headerButtonDiv:hover .headerButtonLine {
    background-color: rgb(24, 24, 24);
}

#mainDiv {
    width: auto;
    height: 74%;

    margin-left: auto;
    margin-right: auto;
    padding: 0px;

    display: flex;
}

#leftTextFigure {
    margin: 0px;
    
    width: 12vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#leftText {
    width: auto;
    writing-mode: vertical-rl;
    text-orientation:upright; 

    margin: 0px;

    font-family: 'ch-thin';
    font-size: 78px;
    letter-spacing: 30px;
    color: white;
}

#mainMiddleDiv {
    height: 100%;
    width: 76vw;
    margin: 0px;

    margin-top: 10px;

    display: flex;
    justify-content: center;
    align-items: center;
}

#contendGridBox {
    background-color: transparent;
    min-height: 390px;
    min-width: 400px;
}

#gridTop {
    width: 100%;
    height: 195px;
    display: flex;
}

#mainText {
    margin: 0px;
    width: 260px;
    font-size: 17px;

    font-family: 'ch-light';
    color: white;

    margin-bottom: auto;
    margin-top: auto;
}

#gridBottom {
    width: 100%;
    height: 195px;
    display: flex;
}

.leftGridImage {
    width: auto;
    height: 100%;

    margin-top: auto;
    margin-bottom: auto;
    transition: filter 0.4s ease;
}

.rightGridImage {
    width: auto;
    height: 100%;

    margin-top: auto;
    margin-bottom: auto;

    margin-left: auto;
    transition: filter 0.4s ease;
}

.leftGridImage:hover {
    filter: brightness(1.6)
}

.rightGridImage:hover {
    filter: brightness(1.6)
}

#midDivider {
    height: 20px;
}

#divider {
    width: 40px;
}

#midFooter {
    height: 13%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#linkList {
    padding: 0px;
    margin: 0px;

    margin-bottom: 2px;
}

.linkButton {
    margin: 0px;
    padding: 0px;

    width: 18px;
    height: 18px;

    border: none;
    cursor: pointer;
    background-color: transparent;

    margin: 0px 20px;
    transition: filter 0.2s ease-in-out;
}

.linkButton:hover {
    filter: brightness(0);
}

#linkButton1 {
    background-image: url("../imgs/discord.png");
    background-size: contain;
}

#linkButton2 {
    background-image: url("../imgs/email.png");
    background-size: contain;
}

#linkButton3 {
    background-image: url("../imgs/instagram.png");
    background-size: contain;
}

#midLine {
    margin-bottom: 24px;
}