
:root {
    --dark: #222831;
    --light-dark: #393E46;
    --light-light: #948979;
    --light: #DFD0B8;
}

/* :root {
    --dark: #1B211A;
    --light-dark: #628141;
    --light-light: #8BAE66;
    --light: #EBD5AB;   
} */
body{
    color: var(--light);
    background-color: var(--dark);
}
code{
    background-color: var(--light-dark);
    padding: 0.1rem 0.2rem;
    display: inline;
}
.main-heading{
    height: fit-content;
    font-size: 2rem;
    color: transparent;
    display: flex;  
    justify-content: center;
    align-items: center;
    background-clip: text;
    flex-direction: column;
    background-image: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 28%, rgba(196, 53, 53, 1) 48%, rgba(215, 219, 89, 1) 70%, rgba(255, 229, 0, 1) 100%);;
    /* background-image: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 42%, rgba(237, 221, 83, 1) 100%); */
}
.main-heading h1{
    margin: 0;
    padding: 0;
}
.main-heading p {
    margin: 0;
    padding: 0;
    font-size: 1rem;
}
.subdomain-tree{
    border: 1px red none;
    width: 50%;
}
.subdomain-tree ul{
    font-size: 1.1rem;
    /* list-style-type: '&#10003;'; */
    list-style-type: none;
}
.subdomain-tree ul li:before{
    /* content: '\2714'; */
    content: '?';
    padding-right: 0.5rem;
}
.no-marked ul{
    list-style-type: '';
}
.x-marked {
    list-style-type: none;
}
.x-marked:before{
    content: '\1F7AE' !important;
    padding-right: 0.5rem;
}
.check-marked {
    list-style-type: none;
}
.check-marked:before{
    content: '\2714' !important; 
    padding-right: 0.5rem;
}
.dog-1{
    aspect-ratio: 4/3;
    width: 60rem;
    border-radius: 1rem;
    /* top: 10rem; */
}
.main-body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.big-border{
    height: 5rem;
}
.small-border {
    height: 2rem;
}
section{
    background-color: var(--light);
    color: var(--dark);
    border-radius: 20px;
    box-shadow: 0px 10px var(--light-light);
}
.q-a{
    margin-left: 1rem !important;
}
.q-a p{
    margin-left: 3rem;
}