:root {
    --theme-color: #06F;
    --theme-color-blue: #6F9CEB;
    --theme-color-dun: #CDC6AE;
    --theme-color-crb: #38686A;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
}

a {
  color: #222;
}

#scene {
  background-image: url("/media/bgsvg.svg");
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  overflow: hidden;
 /*position: fixed;*/
 z-index: -100;
 position: fixed;
   top:0;
   bottom: 0;
   left: 0;
   right: 0;
   opacity: .3;
  
}

main {
  padding: 5rem;
  padding-left: 10vw;
  padding-right: 10vw;
}
.name {
  font-size: 1.75rem;
}
.domain-reg {
  font-size: 1.1rem;
}
.notices > * {
  margin-top: 2rem;
}

.domains {
  margin-top: 5rem;
  line-height: 1.5rem;
}
.domains-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.domains-list {
  margin-top: 2rem;
}
.domains-list > * {
  margin-bottom: 2rem;
}
.contact, .certs-works, .about-me, .additional-notes {
  margin-top: 4rem;
}
.contact > code {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: block;
}
.copy {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.contact > code > i {
  color: #ccc;
}

iics {
  font-family: 'Inter', sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
}

.long-text-comfort {
  line-height: 1.5rem;
  text-align: justify;
  color: #333;
  font-size: 0.9rem;
}
.back-to-tree {
  margin-top: 3rem;
  display: inline-block;
  text-decoration: none;
  color: #35c28c;
}
.back-to-tree:hover {
  color: #1d664a;
}

.ml16 {
  color: #402d2d;
  padding: 20px 0 20px 0;
  font-weight: 800;
  font-size: 2em;
  overflow: hidden;
}

.ml16 .letter {
  display: inline-block;
  line-height: 1em;
}

.dl-grid {
    margin-top: 3rem;
  display: grid;
  gap: 50px;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
  grid-template-columns: auto auto;
}

.dl-grid > .domain-obj {
    width: 100%;
}

.do-img {
    display: inline-block;
    width: calc(100% - 1rem);
    z-index: 1;
    border: 1px solid var(--theme-color);
}

.do-img-effect{
    position: relative;
    width: 100%;
    
}

.do-img-bg {
    
    width: 100%;
    opacity: 0;
    
}

.do-img-bg-ef {
    position: absolute;
    top: 1rem;
    left: 1rem;
   background-color: var(--theme-color);
   z-index: -1;
}

.do-effect-texts {
    margin-top: 2rem;
}

.p-badge {
  height: 8rem;
  display: inline-block;
  transition: filter .2s ease;
  filter: brightness(100%);
  
}

.p-badge:hover {
  height: 8rem;
  filter: brightness(80%);
  display: inline-block;
}

.links-sect > a {
  display: inline-block;
  transition: color 0.2s ease;
}

.links-sect > a:hover {
  color: #888;
}

.links-sect > span {
  margin-right: .5rem;
  margin-left: .5rem;
}
.dom-link {
  font-weight: bold;
}

.dom-link > a:hover {
  filter: brightness(100%);
  transition: filter .3s ease;
}
.dom-link > a:hover {
  filter: brightness(70%);
}

.cert-history-obj {
  display: flex;
  align-content: center;
  justify-content: start;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.ch-left {
  display: flex;
  align-content: space-between;
}

.ch-title {
  font-weight: bold;
}

.ch-right {
  margin-left: 2rem;
}
.ch-date {
  color: #888;
  margin-left: 1rem;
}

.about-me{
  line-height: 1.75rem;
 
}

.co-fixed-visible {
    display: flex;
    justify-items: start;
    align-content: center;
}
.co-icon {
    margin-right: 2ch;
    font-family: 'Inter var', 'Inter', sans-serif;
    display: inline-block;
}
.co-icon, .co-icon > span {
    height: min-content;
}

.co-title {
    font-weight: 500;
    transition: all .2s ease;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}
.co-title:hover {
    border-bottom: 2px solid black;
}
.cot-fixed-underline {
    border-bottom: 2px solid black;
}
.co-detail {
    margin-top: .5rem;
    line-height: 1.5rem;
    text-align: justify;
    transition: all .4s ease;
    opacity: 0;
    display: none;
}

.expanded {
    opacity: 1 !important;
    display: block !important;

}
.co-icon > span {
    display: inline-block;
    transform-origin: 50% 50%;
    transform: rotate(0deg);
    transition: .4s ease-out all;
}
.icon-expanded {
    transform: rotate(90deg) !important;
}

 #nojs-warn {
     display: block;
     margin-bottom: 2rem;
 }

@media (prefers-color-scheme: dark) {
  :root {
    --theme-color: rgb(0, 55, 138);
    --theme-color-blue: #6F9CEB;
    --theme-color-dun: #CDC6AE;
    --theme-color-crb: #38686A;

}
  body {
    background-color: #050515;
    color: #e5e5ff;
  }
  a {
    color: #ccccee;
  }
  .contact > code > i {
    color: #333;
  }
  .name {
    color: #9090ff;
  }
  #scene {
    opacity: 1;
    filter: brightness(150%);
  }

  .do-img {
    filter: brightness(80%);
  }

  .ch-left{
    color: #f5f5ff;
  }
  
  .domains-title {
    color: d5d5ff;
  }
  
}

@media (max-width: 650px) {

  .dl-grid {
    display: block;
 }

 .domain-obj {
  margin-bottom: 5rem;
 }
  .links-sect {
    line-height: 2.5rem;
    font-size: 1.1rem;
  }
  .cert-history-obj {
    display: block;
    margin-bottom: 1rem;
  }
  .ch-right {
    margin-left: 0;
    margin-top: .5rem;
  }
  .ch-left {
    display: block;
  }
  .ch-date {
    margin-left: 0;
  }

  
}

.dn {
  display: none !important;
}