@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/*my id pseudoclasses <4 */
#logo{
  display:block;
  margin:auto;
  /**margin-bottom:-80px;
  position:relative;
  top: -10px;
  z-index: 5;*/
  pointer-events: none;
  width:350px;
}

#banner{
  z-index:-1;
  background:url("tilebg.gif");
  position:relative;
  margin-bottom:-200px;
  border-bottom:6px double #E65540;
}

#main{
  position:relative;
  background:linear-gradient(180deg,rgba(255, 245, 240, 1) 0%, rgba(255, 212, 204, 1) 100%);;
  height:auto;
  margin:auto;
  border-radius:10px;
  border:6px double #E65540;
  padding-top:30px;
}

#right{
  border:2px solid #E65540;
  border-radius:8px;
  height:auto;
}

#center{
  border-radius:8px;
  height:auto;
}

#selfie{
  background:#F7C6BF;
  border: 2px solid #E65540;
}

/* what the fuck ever. */
.main{
  display:block;
}

.truncate {
  display: -webkit-box;             
  -webkit-box-orient: vertical;  
  -moz-box-orient:vertical;
  overflow: hidden;                 
  -webkit-line-clamp: 3;            
  text-overflow: ellipsis;     
}

.post{
  background:#F7C6BF;
  border-radius:8px;
  border:2px solid #E65540;
  height:190px;
}

.box{
  padding:8px 6px 4px 4px;
  height:50px;
  width:50px;
  border:2px solid #E65540;
  border-radius:8px;
  background:#F7C6BF;
  margin-right:15px;
}

.stamp{
  margin-right:2px;
}

i{
  font-size:30px;
  text-align:left;
}

.breadcrumb{
  border:2px solid #E65540;;
  border-radius:5px;
  padding:2px 8px;
  margin:0;
  color:#91473E;
  font-size:12px;
  
}

.breadcrumb a {
  text-decoration:none;
  font-weight:bold;
}

/* NAVBAR with code i ripped from w3 */
.topnav {
  background-color: #4C0702;
  overflow: hidden;
  border-radius:8px;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #E25647;
  color: black !important;
}


.topnav a.active {
  background-color: #B8150E;
  color: white !important;
}

.topnav .icon {
  display: none;
}

/*my lovely media queries....*/
@media only screen and (max-width: 570px) {
  #logo {
    width:250px;
  }
}

@media only screen and (max-width: 570px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media only screen and (max-width: 570px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

body{
  background: url("starbg.jpg");
  font-family:"Space Mono", monospace;
  color:#91473E;
}

body a {
  color:#E65540 !important;
}

body a:hover {
  color:#B8392A !important;
}

h1, h2{
  font-weight:bold;
  background: linear-gradient(to bottom, #4C0702 55%, #B8150E 50%); 
  -webkit-text-fill-color: transparent; 
  -webkit-background-clip: text; 
}
h3{
  
  color:#4C0702;
}
h4{
  color:#B8150E;
}