@font-face {
    font-family: "shoreline";
    src: url('https://k-o.neocities.org/fonts/shoreline.otf');
    font-weight: normal;
  font-style: normal;
}

* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    padding: 10px;
    background: #000000;
    background-image:url('https://wakazakiya.com/ko-html/bkgd/cosmos3.png');
    
  }
  
  /* Header/Blog Title */
  .header {
    padding: 5px;
    font-family: 'shoreline';
    text-align: center;
    background: white;
    color: white;
    background-image:url('https://datasoul.neocities.org/photos/lights.jpg');
    background-position: 25%;
  }
  
  .subtext {
    font-family:'Courier New', Courier, monospace;
    text-align: center;
    font-size:20px;
    border:solid;
    background-color:#000000;
    border-color:#000000;
  }
  .header h1 {
    font-size: 55px;
  }
  
  /* Style the top navigation bar */
  .topnav {
    font-size:20px;
    overflow: hidden;
    background-color: transparent;
    background-image: url('https://k-o.neocities.org/tile/star-banner.gif');
    background-repeat: repeat-x;
    font-family:'Courier New', Courier, monospace;
  }

  /* Style the topnav links */
  .topnav a {
    float: left;
    display: block;
    background-image: url('');
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change color on hover */
  .topnav a:hover {
    background-color: transparent;
    background-image: url('');
    color: rgb(0, 155, 95);
    text-decoration: underline;
  }
  
  /* Create two unequal columns that floats next to each other */
  /* Left column */
  .leftcolumn {
    float: left;
    width: 75%;
    background-image: url('https://datasoul.neocities.org/bkgd/pap01.jpg');
    background-position: 50%, 55%;
    color:white;
  }
  
  /* Right column */
  .rightcolumn {
    float: left;
    width: 25%;
    background-color: #f1f1f1;
    padding-left: 20px;
    background-image: url('https://datasoul.neocities.org/photos/moon.jpg');
    background-position: 35% 41%;
    color:white;
  }

  /* block for text */
  .block {
    background-color: #006154;
    color:rgb(255, 255, 255);
    width: 100%;
    padding: 20px;
  }
  .block1 {
    background-color: #006154;
    opacity:75%;
    color:rgb(255, 255, 255);
    width: 100%;
    padding: 20px;
  }
  
  /* Add a card effect for articles */
  .card {
    background-color: transparent;
    padding: 20px;
    margin-top: 20px;
  }
  
  /* Clear floats after the columns */
  .row::after {
    content: "";
    display: table;
    clear: both;
  }

  .divider {
    background-repeat:repeat-x;
    width:100%;
    height:25%;
  }
  
  /* Footer */
  .footer {
    padding: 10px;
    text-align: center;
    background: #ddd;
    background-image: url('https://k-o.neocities.org/icons/tile2.gif');
    margin-top: 20px;
  }
  
  /* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {   
      width: 100%;
      padding: 0;
    }
  }
  
  /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
  @media screen and (max-width: 400px) {
    .topnav a {
      float: none;
      width: 100%;
    }
  }