* {
    margin: 0;
    padding: 0;
  }
  
  
* {
    box-sizing: border-box;
  }

/* ----------------------------------------------------------------- */
/* header top bar */

.ping {
    color: brown;
}


html {
   font-family: "t26-carbon", "helvetica", sans-serif; 
}

/* the top bar */
header {
    background-color: #ffffff;
    height: 55px;
    padding: 0px 20px 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 6px 6px rgba(23, 34, 39, 0.07);
}


.thin {
    height: 3px;
    background-color: rgb(255, 255, 255);
}

/* center logo on the bar */
.logo {
    margin-top: 4px;
    width: 150px;
}




/* link container */
.menu-container {
    width: 110px;
    font-size: 20px;
}


/* container parent of the menu links */
ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
}

/* menu links */
li {
    margin: 5px;
    font-weight: 500;
    font-family: "din-2014";
    letter-spacing: 0.06em;
}

a {
    text-decoration: none;
    color: rgb(55, 59, 61);
}

.testlink {
    color: white;
}


/* ----------------------------------------------------------------- */
/* main part */


body {
    background-color: rgb(248, 248, 248);

    min-height: 100vh;          /* line 1 stick footer to floor */
    display: flex;              /* line 2 stick footer to floor */
    flex-direction: column;     /* line 3 stick footer to floor */
}


.welcometext {
    margin: 0 auto;
    margin-top: 45px;
    width: 75vw;
    font-size: 21px;
    text-align: center;
    color: rgb(49, 49, 49);
}


.index-main {
    margin: 0 auto;
    margin-top: 30px;
    width: 90vw;
    display: flex;
    flex-wrap: wrap;
    justify-content:flex-start;
}

/* ----------------------------------------------------------------- */
/* boxes */

.boxes, .box-dud {
    margin: 15px 15px 15px 15px;
    border-radius: 8px;
    width: 220px;
}

.boxes {
    text-align: center;
    height: 300px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 3;
    box-shadow: 0px 10px 20px -1px rgba(23, 34, 39, 0.1);
}


.boxes:hover {
   /* background-color: rgb(255, 246, 235); */
    border: 0.14em solid rgb(255, 185, 162);
}


.full-in-box {
    width: 100%;
    height: 300px;
    display: flex; 
    justify-content: center;
    align-items: center;

}


.box-dud {
    height: 1px;
    flex-grow: 3;
}


.inner-box {
    width: 70%;
}


h1 {
    font-family: "din-2014";
    font-weight: 400;
    line-height: 1em;
    font-size: 30px;
    color: rgb(252, 107, 54);
}

h3 {
    margin-bottom: 14px;
    color: rgb(252, 107, 54);
    font-size: 25px;
    font-family: "din-2014";
    font-weight: 400;
    line-height: 1em;
}


h4 {
    font-weight: 100;
    color: rgb(49, 49, 49);
}


/* ------------------------------- */
/* footer */

footer {
    height: 40px;
    background-color: #7a7a7a;
    text-align: center;
    margin-bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: auto;       /* line 4 stick footer to floor */
}


h6 {
    font-family: "din-2014";
    font-weight: 300;
    font-size: 12px;
    color: #ffffff;
}


textarea {
    outline: none;
    padding: 4px;
}

input {
    outline: none;
    padding: 4px;
}

/* ----------------------------------------------------------------- */
/* pages*/

.pages-main {
    margin: 0 auto;
    margin-top: 30px;
    width: 80%;
    height: 20px;
    
}


.pages-main-textarea {
    display: flex;
    align-items: center;
}

.column-container {
    margin: 10px;
}

.column-symbol-input {
    width: 120px;
}