/*/ / / CONTAINER FOR THE WHOLE PAGE / / /*/

/*
FranklinGothic URW Book

font-family: franklin-gothic-urw, sans-serif;

font-weight: 400;

font-style: normal;


FranklinGothic URW Demi

font-family: franklin-gothic-urw, sans-serif;

font-weight: 700;

font-style: normal;


FranklinGothic URW Book Italic

font-family: franklin-gothic-urw, sans-serif;

font-weight: 400;

font-style: italic;


FranklinGothic URW Demi Italic

font-family: franklin-gothic-urw, sans-serif;

font-weight: 700;

font-style: italic;
*/

html {
    box-sizing: border-box;
}

* {
    box-sizing: inherit;
}


body {
    /*Set default fonts for the whole page*/
    /* font-family: ; */
    /* font-weight: 400; */
    /* font-style: normal; */
    /* font-size: 1em; */
    font-family: "Noto Sans KR", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    background-color: #dfd6d6;
    background-position: center;
}
div {
    font-size: .8em;
    background-color: #fff;
    color: #fff;

}

/*/ / / Headers and Paragraphs / / /*/

.label {
    width: 100px;
    height: 100px;
    background-color: rgb(255, 255, 255);
    color: black;
    border-style: dashed;
    border-color: black;
    margin: 10px;
    float: left;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 0.5em;
}

.square {
    width: 100px;
    height: 100px;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    text-align: center;
    
}

.small_circle {

    width: 100px;
    height: 100px;

    margin: .5em;
    float: left;
    border-radius: 2.5em;
}

.medium_square {
    width: 220px;
    height: 220px;
    /* display: flex; */
    /* flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 2em;
    border: 2px solid; */
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 10px;
    float: left;
    border-radius: 20px;
    padding: 0.5em;
    margin-bottom: 25px;
}

.rectangle {
    width: 460px;
    height: 220px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 20px;
}
.tallrectangle {
    width: 220px;
    height: 460px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 20px;
}

.large_square {
    width: 460px;
    height: 440px;
    margin: 10px;
    float: left;
    padding: 0.8em;
    border-radius: 20px;
    /* border-radius: 230px; */
}

.thin_square {
    width: 460px;
    height: 150px;
    margin: 10px;
    /* float: left; */
    padding: 0.8em;
    border-radius: 20px;
    /* border-radius: 230px; */
}

.divide {
    /* BREAKS THE FLOAT */
    /* margin-top: 10px; */
    clear: left;
    /* height: 10px; */
}

/* GENERAL BOX EFFECTS */

.shadow {
    box-shadow: 10px 10px 8px #745b71;
}

.shadow2 {
    box-shadow: 10px 10px 8px #aca16b;
}

.shadow3 {
    box-shadow: 10px 10px 8px #3e443e;
}

.shadow4 {
    box-shadow: 10px 10px 8px #65607d;
}

.whitetext {
    color: #fff;
}



/*/ / / TEXT / / /*/


/* h1 {}

h2 {}

h5 {}

p {} */


/*/ / / TOP NAVIGATION AREA / / /*/


/* header {}

nav {}

nav a {} */

/*/ / / PAGE SECTIONS / / /*/

header,
nav,
main,
footer {
    /*
This styles all three primary structures at once.
The comma means: this, this, and this get styled
the same way. */

    /*Width and margin centers the contents */
    width: 85%;
    margin: 0 auto;

    /*Padding puts space inside the boxes providing 
room to breath for the type*/
    padding-left: 1em;
    padding-right: 1em;

}


/* main { */
/*This adds styles to just the main content area. */
/* } */

footer {
    /*Specific styles for just the footer. */

    clear: left;
    padding-top: 2em;
    color: #aaa;
}



/* / / / REGULAR PAGE LINKS / / / */

/*Sets default links style*/
/* a:link {} */

/*Sets default link mouseover style*/
/* a:hover {} */

/*Sets default link down-click style*/
/* a:active {} */

/*Sets default visited link style*/
/* a:visited {} */

/* NAV STYLING */
nav {
    height: 3em;
    padding: 1em 0;
    letter-spacing: 2px;
    font-family: "hagrid", sans-serif;
    font-style: regular;
    font-weight: bold;
    font-size: .9em;
    font-weight: 800;
    margin-bottom: 70px;
}

/* unvisited link */
nav a:link {
    color: #eaf7ec;
    background-color: #193f0d;
    border-radius: 3px;
    text-decoration: none;
}

/* visited link */
/* nav a:visited {
      color: #355270;
      background-color: #eaf7ec;
      border-radius: 6px;
    } */

/* mouse over link */
nav a:hover {
    color: #eaf7ec;
    background-color: #355270;
}

/* selected link */
nav a:active {
    color: rgb(255, 255, 255);
}

nav a {
    float: left;
    /* more on this later */
    color: #ffffff;
    text-align: center;
    padding: 5px 40px;
    margin-right: 10px;
    margin-bottom: 5px;
    text-decoration: none;
}

nav a.active {
    /* PUT "active" AS A CLASS ON THE CURRENT PAGE LINK */
    color: #eaf7ec;
    background-color: #355270;
    border-radius: 4px;
}

h1 {
    /* font-family: "Wendy One", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 50px; */
    font-family: "Atma", system-ui;
    font-weight: 700;
    font-style: normal;
    margin-top: 60px;
    text-align: center;
    color: #31311e
}

/* hr{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
} */

hr {
    clear: both;
    overflow: visible; /* For IE */
    height: 30px;
    border-style: solid;
    border-color: #2b2b24;
    border-width: 1px 0 0 0;
    border-radius: 20px;
    margin: 0 auto;
    /* Other styles for your HR */
}

#content {
    width: 50%;
    /* margin-left: ; */
}

body {
    background-color: #45452a;
    background-image: url(images/patterns/stars.jpg);
    /* CHANGE PAGE COLOR HERE */
    margin: 010%;
    color: #000000;
    /* CHANGE TEXT COLOR HERE */
    /* font-size: ;
  margin-left: ;
  margin-right: ; */
    font-size: 1em;
    /* default 16px */
}

main {
    background-color: #ffffe1;
    /* padding: 0px; */
    /* or other padding number */
}

header {
    margin-top: -125px;
}