/* FONTS AND FILES */
@font-face {
  font-family: Nunito;
  src: url('https://iztopher.neocities.org/core/fonts/Nunito-Regular.ttf');
}

@font-face {
  font-family: Nunito;
  src: url('https://iztopher.neocities.org/core/fonts/Nunito-Bold.ttf');
  font-weight: bold;
}

@font-face {
  font-family: Nunito;
  src: url('https://iztopher.neocities.org/core/fonts/Nunito-Italic.ttf');
  font-style: italic;
}

@font-face {
  font-family: Nunito;
  src: url('https://iztopher.neocities.org/core/fonts/Nunito-BoldItalic.ttf');
  font-style: italic;
  font-weight: bold;
}
            
@font-face {
  font-family: rainyhearts;
  src: url('https://iztopher.neocities.org/core/fonts/rainyhearts.ttf');
}

@font-face {
  font-family: patrickhand;
  src: url('https://iztopher.neocities.org/core/fonts/PatrickHand.ttf');
}


.nunito {
  font-family: 'Nunito';
}

body {
  font-family: 'Nunito';
  padding: 10px;
  background: #262626;
}

p {padding: 0px 15px 0px 15px;}

a {
  color:#6c6cc6;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #53acac;
  text-decoration: underline;
}

.header {
  overflow: hidden;
  background: #404040;
  color: #fff;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  padding: 10px;
  font-family: 'rainyhearts';
  text-decoration: none;
  font-size: 32px;
  display: flex;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-text {
  padding-left: 10px;
}

.header img {
  margin-top: 6px;
}

.header-right {
  padding-right: 20px;
}

.header-right a:link, .header-right a:visited {
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  padding: 6px;
}

.header-right a:hover, .header-right a:active {
  border-radius: 4px;
  color: #fff;
  background: #262626;
  padding: 6px;
}

.topcard {
  margin-top: 75px;
  background-color: #fff;
  border: 3px solid #fff;
}

h1, h2 {
  font-family: patrickhand;
  text-align: center;
}

h3 {
  font-family: 'Nunito';
  text-align: center;
}

/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: white;
  cursor: pointer;
  font-size: 1em;
}

/* Add a grey background color on mouse-over */
.btn:hover {
  background-color: #cbe6e6;
}

/* Add a dark background color to the active button */
.btn.active {
  background-color: #cbe6e6;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.toprow {
  margin: auto;
  width: 45%;
}

img {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding-bottom: 3px;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */

@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
  
  .logs {
    column-count: auto;
  }
}