/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');


@font-face {
  font-family: "Lexend";
  src: url(../Fonts/Lexend.ttf);
}

@font-face {
  font-family: "LexendThin";
  src: url(../Fonts/LexendThin.ttf);
}

@font-face {
  font-family: "LexendBold";
  src: url(../Fonts/LexendBold.ttf);
}



@font-face {
  font-family: "Boldonse";
  src: url(../Fonts/Boldonse-Regular.ttf);
}

@font-face {
  font-family: "Russo";
  src: url(../Fonts/RussoOne-Regular.ttf);
}



@font-face {
  font-family: "Geo";
  src: url(../Fonts/Geo-Regular.ttf);
}

@font-face {
  font-family: "Righteous";
  src: url(../Fonts/Righteous-Regular.ttf);
}


/*GLOBALS*/
body, html
{
    padding: 0;
    margin: 0;
}

body
{
    color: white; 
    font-family: Lexend; 
    background-color: #040404;
    overflow-x: hidden;
}

hr {
  display: block;
  height: 6px;
  border: 0;
  border-top: 3px solid #b0001a;
  margin: 0 5% 0 5%;
  padding: 0;
}


/* The Normal Devlog List Items Style */
ol li a
{
  color: #b0001a;
  font-family: Lexend;
}




/* NAVBAR */
.desktopNavbar
{
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: -webkit-sticky; 
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 70px;

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

  background-color: #040404;

}

.desktopNavbar ul 
{
  list-style-type: none;
}
  
.desktopNavbar ul li 
{
  float: left;
  margin-right: 25px;
}

.desktopNavbar ul li a {
  display: block;

  color: white;
  text-align: center;
  text-decoration: none;

  font-family: LexendThin;
  font-weight: 600;
  font-size: 16px;
  
}

.desktopNavbar ul li p
{
  height: 20px;
  width: 75px;
  margin: 0;

}

.desktopNavbar ul li p a
{
  margin-top: 10px;
}




.desktopNavbar ul li img
{
  width: 40px;
  height: 40px;
}
  

.desktopNavbar ul li a:hover {
    animation: ToGrey 0.1s ease-in forwards;

}




/* Item Underline */
.NavBarItemUnderline
{
  display: block;
  width: 100%;
  height: 1px;  
  background-color: #b0001a;
  transition: width 0.2s ease-in-out;
  margin: 10% 0 0 0;
}


li:hover .NavBarItemUnderline
{
  float: left;
  width: 100%;
}

li:not(:hover) .NavBarItemUnderline
{
  float: right;
  width: 0%;
}
.selected
{
  font-weight: bold;
}


/*DEVELOPER NEWS*/
.NewsWrapper
{
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: flex;
  gap: 10px;
  justify-content: center;
  align-items: center; 
}

.Mobile_NewsWrapper
{
  width: 100%;
  padding: 0;
  margin: 0 10% 0 10%;
  display: inline;
  gap: 10px;
  justify-content: center;
  align-items: center; 
}

.NewsWrapperTitle
{
  display: flex;
  text-align: center;
  font-family: Boldonse;
  font-size: 32px;
  padding: 2.5% 0 0 5%;
  margin: 20px 0 0 0;
}

.MobileNewsTitle
{
  text-align: center;
  font-family: Lexend;
  font-size: 18px;
  padding: 5%;
  width: 100%;
  margin: 0;
}

.NewsBlock
{
    height: 100%;
    width: 500px;
    text-align: left;
    padding-bottom: 0.5%;
    margin: 2.5% 2.5% 0 2.5%;
    transition: transform 0.1s ease-out; 
    overflow: hidden; 
    box-shadow: black 8px 8px 8px;
}

.NewsBlock .Text
{
    background-color: #040404;
    padding: 0;
    margin: 0;
}

.MobileNewsBlock
{
  height: 100%;
  width: 80%;
  text-align: left;
  padding: 0;
  margin: 0 0 10% 10%;
  transition: transform 0.1s ease-out; 
  overflow: hidden; 
  box-shadow: black 8px 8px 8px;

}

.NewsBlock img
{
  width: 100%;
  border: 3px black solid;
}

.MobileNewsBlock img
{
  width: 100%;
  border: 3px black solid;
}

.NewsBlock:hover
{
  transform: scale(1.1, 1.1);
}

.NewsBlock h1, h3, p
{
  text-align: left;
  padding: 0 5% 0 5%;
  margin: 0;
}

.MobileNewsBlock h1, h3, p
{
  text-align: left;
  padding: 0 5% 0 5%;
  margin: 0;
}

.MobileNewsBlock h1
{
  font-size: 18px;
  width: 60%;
  padding-bottom: 1%;
}

.MobileNewsBlock h3
{
  font-size: 16px;
  font-family: LexendThin;
}

.MobileNewsBlock p
{
  font-size: 12px;

}

.NewsBlock h1
{
  font-size: 24px;
  font-family: LexendThin;
  font-weight: 900;
}

.NewsBlock h3
{
  font-family: LexendThin;
  font-weight: 500;
}

.NewsBlock p
{
  font-size: 12px;
  font-family: Lexend;
}

.NewsBlock a
{
  color: wheat;
}


/* DEVLOG */

.devlogList
{
  list-style-type: circle;
  padding-left: 30%;
  padding-right: 30%;
}

.mobile_devlogList
{
  list-style-type: circle;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 12px;
}

.mobile_devlogList img
{
  width: 100%;
  padding-top: 5%;
}

.mobile_devlogList li
{
  font-size: 10px;
  font-family: Lexend;
}

.devlogList li
{
  font-family: LexendThin;
}

.devlogList img
{
  width: 100%;
  margin-top: 5%;
  box-shadow: black 3px 3px 3px;
}

.DevVersionHeader
{
  text-align: center;
  font-family: "LexendThin";
  font-weight: 600;
  font-size: 14px;
}


#buildText
{
  font-family: LexendBold;
  font-size: 32px;
  text-align: center;
}

.MonthContainers
{
  width: 90%;
  margin: 2.5px 5%;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}


.MonthCard
{
  box-shadow: black 5px 5px 5px;
  width: 550px;
  height: 750px;

  border-radius: 15px;

  
  text-decoration: none;
  color: white;

  transition: ease-in-out all 0.1s;
  background-color: transparent;
  scale: 0.95;

  user-select: none;
}


.MonthCard img
{
  width: 550px;
  height: 750px;
  object-fit: cover;
  
  border-radius: 15px;
  position: absolute;
  z-index: -1;
}


.CardBack
{
  width: 550px;
  height: 750px;
  
  border-radius: 15px;
  position: absolute;
  z-index: -1;
  
  background-size: cover;
  background-position: center; /* Optional: centers the image */
  background-repeat: no-repeat; /* Optional: prevents tiling */

  background-color: rgba(15, 15, 15, 0);

  
  mask-image: linear-gradient(
    to bottom,
    black 70%,
    transparent 100%
  );
}



.MonthDetails
{
  padding: 8px 0;
  border-radius: 0 0 15px 15px;
  background-image: url('path/to/your-background-image.jpg');


}

.MonthCard ol
{
  height: 600px;
  list-style-type: circle;

  transition: ease-in-out opacity 0.1s;
  opacity: 0;
  transform: rotateY(180deg);
}

.MonthCard ol li
{
  font-size: 16px;
  padding-top: 20px;
}


.MonthCard h1
{
  text-align: center;
  font-family: 64px;
}

.MonthCard p
{
  text-align: center;
  opacity: 0.5;
}

