/* trying rem units, this sets the baseline unit, so 1rem = 10px */
html {
    font-size: 10px;
}

/* Main page styling */
h2 {
    margin:2.25%;
    padding-top: 0;
    font-family: "Jersey 20", sans-serif;
    font-size: 2.8rem;
    font-style: italic;
    color: lightcyan;
}

b {
    color: LightSkyBlue;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Kanit", sans-serif;
    font-size: 1.6rem;
    color: lightcyan;
    background-color: #12191e;
    z-index: 99;
}

#links {
    display: flex;
    justify-content: space-evenly;
    font-family: "Jersey 20", sans-serif;
    text-align: center;
    font-size: 3rem;
    color:lightslategrey;
}

#links a {
    width: fit-content;
    color:lightskyblue;
    text-decoration: none;
    padding: 0.5rem 1rem 1rem;
    background-color: #10213f;
    border-radius: 0.5rem;
    transition: 0.2s ease-in-out;

}

#links a:hover {
    background-color: #18374C;
    color: lightcyan;
    
}


/* entry page container */
.entrybox {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    align-content: center;
    flex-wrap: wrap;
    height: 80vh;
    text-align: center;
}


.entrycont {
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    padding: 2% 4%;
    width: 40vw;
    background-color: #010b14e3;
    flex-shrink: 1;
}

.entrycont img {
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.entrycont #greyIcon {
    min-width: 30%;
    max-width: 100%;
    flex-shrink: 1;
}

.entrycont #logotype {
    min-width: 70%;
    max-width: 100%;
    flex-shrink: 1;
}

#enterBtn {
    /* background-color: #18374c; */
    border-radius: 0.5rem;
    min-width: 60%;
    max-width: 65%;
    padding: 1% 0%;
    margin-left: auto;
    margin-right: auto;
    /* text-align: center; */
    transition: 0.2s ease-in-out;
}

#enterBtn a {
    font-family: "Jersey 20", sans-serif;
    font-style: italic;
    /* text-align: center; */
    font-size: 3rem;
    text-decoration: none;
}

#enterBtn a:visited {
    color: lightcyan;
}

#enterBtn a:hover {
    color: lightskyblue;
}



/* Responsive layout */
@media (max-width: 70rem) {
    .socialGroup {
        left: 2%;
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    .entrycont {
        width: 60vw;
    }


}