
:root {
  /*---------General Colors-----------*/
  --content-background-color: #272e4b;
  --border: 3px solid #00ffe0;
  --link-color: #6f8cdc;
  --link-color-hover: #83076d;
  
 /*--------------Font-----------------*/
  --font: obliviousfont, sans-serif;
  --text-color: #00ffe0; 
  --font-size: 16px;

 /*---------------misc-----------------*/
  --margin: 16px;
  --padding: 24px;
  --sidebar-width: 200px;
}


* {
  box-sizing: border-box;
}


/*---------------body-----------------*/
/*------------------------------------*/

body { 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: auto;
  min-height: 100vh;
  margin: 0;
  padding: var(--margin);
  font-size: var(--font-size);
  line-height: 1.2;
  font-family: var(--font);
  background-image: url("media/pattern 123.jpg");

}

/*------------------------------------*/

hr {clear: both;visibility: hidden;}
h1 {font-size:22px; color: white; margin:0; }
h2 {font-size: 17px;  color: var( --text-color); background-color:#233a5f; margin: 0; padding:4px;}
p  {color: #e9ccd3;}

/*--------------linkbutton------------*/
/*------------------------------------*/

.lbutton {
	box-shadow:inset -22px -37px 0 -24px #5c3e69;
	background-color:#6f4770;
	border-radius:8px;
	border:2px solid #00ffe1;
	display:inline-block;
	cursor:pointer;
	color:#e9ccd3;
	width: 130px;
	font-family: var(--font);
	font-size:17px;
	font-weight:bold;
	padding:11px 11px;
	margin: 2px;
	text-decoration: none;

}
.gbutton {
	box-shadow:inset -22px -37px 0 -24px #5c3e69;
	background-color:#6f4770;
	border-radius:8px;
	border:2px solid #00ffe1;
	display:inline-block;
	cursor:pointer;
	color:#e9ccd3;
	font-family: var(--font);
	font-size:17px;
	font-weight:bold;
	padding: 11px 11px;
	text-decoration: none;


}

.topgrid, .midgrid {
  display: grid;
  width: 100%;
  max-width: 650px;
  box-sizing: border-box;
  margin: 0 auto;
  column-gap: 5px;
  row-gap: 5px;
}
/*----------------------------------------------------------------------------------------------------------------*/

.topgrid {
  display: grid;
  grid-template-areas:  "links trinket chatbox" 
                        "links omen chatbox"
                    
}

/*----------------links---------------*/
/*------------------------------------*/

.links {
  grid-area: links;
  text-align: left;
  padding-right: 0;
  align-self: start;
 
}

/*----------------junk---------------*/
/*------------------------------------*/

.omen {
  grid-area: omen;
}
.trinket {
  grid-area: trinket;
  width: 35%;
  height: auto;
  padding: 5px 5px 10px 5px; 
  text-align: center;}
.trinket img {
width: 100%; 
height: auto; 
border: 2px solid blue;
display: block;}
.trinketcaption {
font-size: 2;
color: #593959;
border: 2px solid blue;
padding-top: 2px;
margin-top: -2px;}


/*----------------------------------------------------------------------------------------------------------------*/
.midgrid {
  display:grid;
  grid-template-columns: min-content 1fr;
  grid-template-areas:"mediawrapper aboutme"
                      "guestbookbutton aboutme";
  align-items: start;  
}
.side-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/*-------------mediaplayer------------*/
/*------------------------------------*/

.mediawrapper {grid-area: mediawrapper; 
}
  
  .mediaplayer {
  display: flex;
  flex-direction: row;
  border: 2px solid #00ffe0;
  border-radius: 10px;
  background: #6f4770;
  font-color: #00ffe0;
 
}

  .musicflex {display: flex; 
  flex-direction:column;}

  .musicicon {padding-left:3px; 
  padding-top: 3px;}
  
  .songtitle {
      padding:5px;
      background-color: #233a5f;
      color: #00ffe0;
      border-radius: 0 10px 0 0;
      
    }
  .seeking {
    background-color:#6f4770;
    font-color:#00ffe0;
    display:flex;
    justify-content: space-evenly;
    padding-top:15px;
    padding-inline:4px; 
    }

  input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
  

  }
  input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    box-sizing: border-box;
    background: #00ffe0;
   
    }
    
  .seek_slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #233a5f;
    cursor: pointer;
    border-radius: 50%;
    padding-top:3px;
    position:relative;
    bottom:3px;
  }
  .controlimg {
    height:20px;
    width:20px;
    }
  .controls {
        font-size:18px !important; 
        text-align:center;
        width:100%;
        position:relative;
        bottom:0;
  }
  .controls td {
        padding:5px 5px 0 5px; 
    }
  td {
  border-radius: 10px;
  border: 2px solid #00ffe0;
  background-color:#233a5f;
    }

  
/*---------guestbookbutton------------*/
/*------------------------------------*/

.guestbookbutton {
  grid-area: guestbookbutton;
  text-align: left;
  padding-top: 5px;
 
 
  
}

/*--------------aboutme---------------*/
/*------------------------------------*/

.aboutme  {
  grid-area: aboutme;
  background-color: var(--content-background-color);
  border: var(--border);
  }
.aboutme > p {padding: 0 15px 0 15px;}
  

  


