/*LANDING CARD STYLES*/ 

.landing {
  border:3px solid black;
  width:600px;
  height:400px;
  margin: 0 auto;
  padding:40px;
  box-sizing: border-box;
  justify-content: center; 
  align-items: center;
  display: grid;
}

.invis-L {
  height:180px;
}

.invis-S {
  height:10px;
}

/*MAIN PAGE STYLES*/ 

body{    /*necessary for the header sadly so manual margin and paddings and stuff is required*/
  margin: 0px;
  padding: 0px;
}



/*HEADER*/

.temp-header {
  height:100px;
  border:3px solid black;
  padding:5px;
  text-align: center;
  display: grid;
  place-items: center; /*these can be removed after an image is decided since the display grid and place items center is for text in this instance*/
}

/*MAIN PAGE SHIT AS WELL AS THINGS THAT CHANGE THE WAY IT LOOKS ON THE PAGE YOU KNOW WHAT I MEAN*/

.container {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin:10px;
  box-sizing: border-box;
}

.box {
  height: 85vh;
  display: flex;
  flex-direction: column;
  border: 3px solid black;
  padding: 0; /* important so borders align */
  box-sizing: border-box;
}

/*NAV SHIT*/
.nav-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid black;
}

.nav-news {
  height: 250px;
  display: flex;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid black;
}

/* middle scroll section */
.nav-middle {
  flex: 1;
  overflow-y: auto;
  border-bottom: 3px solid black;
  padding: 5px;
}

.nav-middle2 {
  flex: 1;
  overflow-y: auto;
  padding: 5px;
}

/* bottom section */
.nav-bottom {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* placeholders */
.item {
  padding: 5px;
  border: 1px solid black;
  margin-bottom: 10px;
}

.item2 {
  height:100px;
  padding: 1px;
  border: 1px solid black;
  margin-bottom: 10px;
}

#nav-width {
  width:20%;
}

/*MAIN SHIT*/

.main-user {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 3px solid black;
  font-size:25px;
  padding-left:5px;
  padding-right:5px;
}

.main-text {
  flex:1;
  padding: 10px;
  box-sizing: border-box;
  font-size:20px;
  overflow-y: auto;
}

.main-body {
  box-sizing: border-box;
  display:flex;
  border-bottom: 3px solid black;
}

.main-footer {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid black;
}

#main-width {
  width:60%;
}

.wrapper {
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-content span {
  display: flex;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*FONTS*/

.xanh-mono-regular {
  font-family: "Xanh Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.xanh-mono-regular-italic {
  font-family: "Xanh Mono", monospace;
  font-weight: 400;
  font-style: italic;
}

.tillana-regular {
  font-family: "Tillana", system-ui;
  font-weight: 400;
  font-style: normal;
}

.tillana-semibold {
  font-family: "Tillana", system-ui;
  font-weight: 600;
  font-style: normal;
}

/* <weight>: Use a value from 100 to 1000
   <uniquifier>: Use a unique and descriptive class name */

.roboto-flex-regular {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 87.5,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

.vidaloka-regular {
  font-family: "Vidaloka", serif;
  font-weight: 400;
  font-style: normal;
}

.columned-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.columned-list-2 {
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}

.img-one {
  height:100px;
  width:100px;
  object-fit: cover;
}

.img-two {
  height:200px;
  width:200px;
  object-fit: scale-down;
}

.img-two-alt {
  height:200px;
  width:200px;
  object-fit: cover;
}

.table-dec-one {
  border:3px solid black;
  margin:auto;
  width:800px;
  text-align: center;
}

#name {
  width:25%;
}

#desc {
  width:25%;
}

#piece {
  width:50%;
}