@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');


:root {
    --basecolor:#FCFFDA;
    --oppositecolor:#CE2323;
    --bigfont: 45px;
    --mediumfont: 28px;
    --smallfont: 20px;
}

* {
    box-sizing:  border-box;
    margin: 0;
}


body {
    font-family: 'Share Tech Mono', monospace;
    background-repeat: no-repeat;
    background-size:cover;  
    padding-bottom: 500px;
    background: var(--basecolor);
    -moz-transform: scale(0.8, 0.8); /* Moz-browsers */
    zoom: 0.8; /* Other non-webkit browsers */
    zoom: 80%; /* Webkit browsers */
}

/* Navigation */

.wrapper {
    max-width: 1800px;
    margin: 0 auto;
}

nav {
    padding-top:10px;
    display: flex;
    
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
}


nav .logo {
    font-family: 'Share Tech Mono', monospace;
    font-style: normal;
    font-weight: normal;
    font-size: 72px;
    line-height: 81px;
    
    color: #CE2323;   
}

.nav-items li{
    list-style: none;
    margin-right: 50px
}

.na-items li:nth-last-of-type(1){
    margin: 0;
}

.nav-items li a{
    font-family: Share Tech Mono;
    font-style: normal;
    font-weight: normal;
    font-size: var(--mediumfont);
    line-height: 39px;
    
    color: #CE2323;
    
    text-decoration: none; 
}
/* top image */
.top-image {
    background:#CE2323 url('media/topfixed.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-size:100%;
    padding-top: 4%;
}

.featured-content {
    font-family: Share Tech Mono;
    font-style: normal;
    font-weight: normal;
    font-size: var(--smallfont);
    margin-left: 10%;
    margin-top: 15px;
    line-height: 39px;
    color: #FCFFDA;
}


/* headers */
.header-container {
    background:#CE2323;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    min-height: 50vh;
    display: flex;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header .my-content {
    padding-top: 50px;
    display: inline-block;
    margin-bottom: 25px;
    margin-left: 10%;
    font-family: Share Tech Mono;
    font-style: normal;
    font-weight: normal;
    font-size: var(--bigfont);
    line-height: 68px;
    color: #FCFFDA;
}

.my-content a{
    text-decoration: none; 
    color: #FCFFDA;
    align-content: center;
}

.grid-container-1 {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 20% 60%;
    grid-template-rows: 1fr;
    gap: 1px 1px;
    grid-template-areas: "Date-1 Text-1";

  }
  
  .Date-1 { grid-area: Date-1; 
    padding-top: 30px;
    padding-bottom: 30px;
}

  
  .Text-1 { grid-area: Text-1;
    padding-top: 45px;
    padding-bottom: 30px;
    font-family: Share Tech Mono;
    width:100%;
    font-style: normal;
    font-weight: normal;
    font-size: var(--mediumfont);
    line-height: 34px;  
    color: #FCFFDA; }

    .bottom-img{
            padding-top: 9%;
            width: 100%;
            background-repeat: no-repeat;
            background-size: contain;
            background:#FCFFDA url('media/bottom.svg');
            background-size:100%;
        }



/* NEWS HEADER */
h1 {
    padding-top:50px;
    padding-bottom: 25px;
    overflow: hidden;
    text-align: center;
    font-family: Share Tech Mono;
    font-style: normal;
    font-weight: normal;
    font-size: var(--mediumfont);
    line-height: 40px;  
    color: #CE2323;
  }
  
  h1:after {
    background-color: #CE2323;
    content: "";
    display: inline-block;
    height: 4px;
    position: relative;
    vertical-align: middle;
    width: 72%;
  }
  h1:before {
    background-color: #CE2323;
    content: "";
    display: inline-block;
    height: 4px;
    position: relative;
    vertical-align: middle;
    width: 13%;
  }
  
  h1:before {
    right: 0.5em;
    margin-left: -50%;
  }
  
  h1:after {
    left: 0.5em;
    margin-right: -50%;
  }
/* NEWS */
.news-container {
    color: #CE2323;
}
.news-content {
    display: inline-block;
    margin-bottom: 25px;
    margin-left: 10%;
    font-family: Share Tech Mono;
    font-style: normal;
    font-weight: normal;
    font-size: var(--bigfont);
    line-height: 68px;
    color: #CE2323;
}

.grid-container-2 {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 20% 60%;
    grid-template-rows: 1fr;
    gap: 1px 1px;
    grid-template-areas: "Date-2 Text-2";

    }
    
    .Date-2 { grid-area: Date-2; 
    padding-top: 30px;
    padding-bottom: 30px;}
    
    .Text-2 { grid-area: Text-2;    
    padding-top: 45px;
    padding-bottom: 30px;
    font-family: Share Tech Mono;
    width:100%;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
    font-size: var(--mediumfont);
    line-height: 34px;  
    color: #CE2323;}

    .Text-2 a { text-decoration: none;
        color: #CE2323; }



/* FOOTER */
.footer {
    padding-top: 10px;
    text-align: center;
    vertical-align: bottom;
    font-size: 15px;
    font-family: sans-serif;
    color: #CE2323; 
}


