@font-face {
    font-family: "Gaegu Regular";
    src: url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.eot");
    src: url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/feaac298fd9d18207b655ae2cab5ea6e.svg#Gaegu Regular")format("svg");
}

body {
/*font*/
  font-family: Gaegu Regular;
  color: #212F5C;
/*bg*/
    background-image: url(https://sukimisnaka.neocities.org/art-stuff/wowe.png);
    background-position: 0% 0%, center;
    background-repeat: repeat;
    background-size: 512px;
    background-color: #FFFFFF;
    background-attachment: fixed;
}


/*changes the size of paragraphs, headings, etc*/
p {
  font-size: x-large;
}

h1 {
  font-size: xxx-large;
  text-decoration: underline;
  text-decoration-style: wavy;
}

h2 { 
  font-size: xx-large; 
}

/*divider*/
hr.dashed {
  border-top: 3px dashed #212F5C;
}


/*fancy links*/
a {
  color: #212F5C;
  text-decoration: none;
}

a:hover {
  color: #152a6da1;
  transform: scale(1.05);
  transition: 0.3s;
}


/*split screen*/
.container {
  display: flex;
}

.left-half {
  flex: 1;
  padding: 1rem;
}
.right-half {
  flex: 1;
  padding: 1rem;
}


/*gallery stuff*/
  .gallery {
    margin: 20px;  
  }
  div.img img {
    width: 75%;
    height: auto;
    cursor: pointer;
  }
  
  /* Add Responsiveness */
  .responsive {
    width: 15%;
    float:left;
  }
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(33, 47, 92); /* Fallback color */
    background-color: rgba(33, 47, 92, 0.55); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* The Close Button */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #e1e8ff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: rgba(225, 232, 255, 0.5);
    text-decoration: none;
    cursor: pointer;
  }
  
  .img img {
  	border-radius: 5px;
  }
  
  .img img:hover {
  	transform: scale(1.03);
      transition: 0.3s;
  }
  
  /* Responsive Columns */
  @media only screen and (max-width: 700px){
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
    .modal-content {
      width: 100%;
    }
  }
  
  @media only screen and (max-width: 500px){
    .responsive {
      width: 100%;
    }
  }
  
  /* Clear Floats */
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }