/* You can either copy the below and paste it between style tags on your HTML page, OR you can copy this to a file and name it .css and link it from your HTML page. */

<style>

:root {
  --bg-color:#170424;
  --border-color:#91f63a;
  --subtitle-color:#91f63a;
  --link-color:#18bc5a;
  --inside-color:#f4e7fe;
}

.coiny-regular {
  font-family: "Coiny", system-ui;
  font-weight: 400;
  font-style: normal;
}

.slabo-13px-regular {
  font-family: "Slabo 13px", serif;
  font-weight: 400;
  font-style: normal;
}

html, body {
  height:100%;
  background: #170424;
}

html {
    display: table;
    margin: auto;
    background:url(https://vividvermeer.neocities.org/Resources/starbg.webp);
}

body {
    display: table-cell;
    vertical-align: top;
    background: linear-gradient(0deg,rgba(23, 4, 36, 1) 0%, rgba(50, 6, 79, 1) 48%, rgba(158, 38, 120, 1) 89%);
    padding-left:10px;
    padding-right:10px;
}

header {
  }

.container {
  display: flex;
  grid-template-columns: 20% 60% 20%;
  padding: 10px;
  column-gap:5px;
  justify-content:space-between;
  justify-items:stretch;
  width:1250px;
}

.sidebar {
  width:210px;
  padding:10px;
  justify-content: center;
  font-family: "Slabo 13px", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom:15px;
  position:sticky;
  top:0;
}
  
.subtitle {
  color:var(--subtitle-color);
  font-size:21px;
  font-family: "Coiny", system-ui;
  border-bottom:2px solid var(--subtitle-color);
  margin-left:10px;
  margin-right:10px;
}

article {
  background:#f4e7fe;
  padding:15px;
  border-radius: 25px;
  border: 2px solid #91f63a;
  height: default;
  justify-content: center;
  font-family: "Slabo 13px", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom:15px;
  margin:10px;
  overflow:scroll;
  scrollbar-width: none;
}

.links {
  list-style-type:"☆";
  font-size:16px;
  font-family: "Slabo 13px", serif;
  line-height:1.5;
  margin:10px;
  padding-left:10px;
}

li {
    padding-left: 23px;
}

.icon {
        border-radius: 50%;
        max-width:100px;
        border-bottom: 10px solid transparent;

}

.icon:hover {
        border-radius: 50%;
        max-width:110px;
        border-bottom: 1px;
}

main {
  margin-top:20px;
  margin:10px;
  max-width:100%;
  min-width:200px;
}

   section > p {
     padding:10px;
   }
   
.profile {
  display: grid;
  grid-template-columns: 50% 50%;
  column-gap:10px;
  padding: 10px;
  justify-content:center;
  align-content:center;
}

.squares {
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 10px;
  justify-content:center;
  align-content:center;
}

.journal {
  display: grid;
  grid-template-columns: 10% 90%;
  padding: 10px;
  margin-right:40px;
  justify-content:flex-start;
  align-content:center;
  column-gap:30px;
}

.collapsible {
  cursor: pointer;
  padding: 20px;
  width: 680px;
  border: none;
  text-align: left;
}

.active, .collapsible .subtitle:hover {
  background: #9E2678;
  background-size:120%;
  color: #91f63a;
  border-radius: 50px;
  padding:5px;
}

.collapsecontent {
  padding:0;
  display: none;
  overflow: auto;
  width: 680px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-item {
  margin: 5px;
  width: 200px;d
  height: 150px;
  overflow:hidden;
  object-fit:cover;
  object-position:center;
}

.gallery-item:hover {
  border-radius:30px;
}

.gallery-item img {
  width:100%;
  object-position:center;
}

.gallery-item img:hover {
  border-radius:10px;
}
   
footer {
  margin-left:20px;
  max-width:30%;
  font-size:12px;
  font-family: "Slabo 13px", serif;
  font-weight: 400;
  font-style: normal;
}

</style>