/* root elements */
* {
    --pmain: #25a7dd;
    --pbg: #112d50;
    --psecond: #f3f04d;
    --pwhite: #fdfdfd;

}

html,
body {
    /* padding: 0px; */
    /* margin: 0; */
    font-family: 'Dosis', sans-serif;
    background-color: var(--pbg);
    color: var(--pwhite);
}


/* headers */
.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.heading {
    font-family: 'Permanent Marker', cursive;
    background-color: var(--pmain);
    padding: .6rem;
    font-size: 1.3rem;
    text-align: center;
    min-width: 100%;
}

.title {
    font-size: .9rem;
}


/* sections */
.flexmain {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 5px solid purple; */
    padding: 0 1rem;
    width: 90%;
    max-height: 500px;
}


.flex-item {
    width: 600px;
    min-height: 200px;
    /* border: 2px solid red; */
    /* background-color: white; */
    flex-direction: column;
    margin: 1rem;
}

/* left */
.flex1 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: 1.5rem;
    min-height: 100px;
    font-size: 2rem;
}

.flex2 {
    min-height: 200px;
}
.lists{
    list-style: none;
    margin: 0;
    padding: 0;
}

.flex3 {
    min-height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    /* padding: 2rem; */
}
.flexhints{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    /* border: 3px solid black; */
    min-width: 200px;
}
.flexChild{
    font-size: .8rem;
    margin: none;
    padding: none;
}

.flexChild1 {
    position: relative;
    transform: translateX(-150px);
    /* min-width: 300px; */
    /* border: 3px solid orange; */
}

.flexChild2 {
position: absolute;
    transform: translateX(250px);
}


/* right */
.flex4 {
    min-height: 75px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    
}

.flex5 {
    display: flex;
    align-items: center;
    justify-content: top;
    min-height: 250px;
}
.boxvector{
    width: 70%;
    height: 240px;
    /* border: 3px solid yellow; */
    /* padding: 1rem; */

}
#box0{
    position: absolute;
    transform: translate(10px, 0px);
    width: 400px;
    height: 260px;
    background-color: white;
    /* z-index: -1; */
    opacity: 15%;
    transition: .4s ease-in-out;
}
#box0:hover{
    opacity: 10%;
}
#box1{
    /* animation: slide 1s 1 linear forwards; */
    position: relative;
    transform: translate(125px,210px);
    width: 40%;
    border-radius: 6px;
}
#box2{
    position: relative;
    transform: translate(140px);
    /* transform: rotate(90deg); */
    width: 15px;
    height: 200px;
}
#box3{
    position: relative;
    transform: translate(125px,-190px);
    width: 35%;
    height: 10px;
}
#box4{
    position: relative;
    transform: translate(226px, -192px);
    width: 4px;
    height: 38px;
}
#box5{
    position: relative;
    transform: translate(216px, -200px);
    background-color: var(--pwhite);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    z-index: 2;
}
#box6{
    position: relative;
    transform: translate(225px, -205px);
    width: 7px;
    height: 70px;
    /* background-color: var(--psecond); */
}
#box7{
    position: relative;
    transform: translate(210px, -265px) rotate(65deg);
    width: 7px;
    height: 40px;
    /* background-color: var(--psecond); */
}
#box8{
    position: relative;
    transform: translate(240px, -305px) rotate(-65deg);
    width: 7px;
    height: 40px;
    /* background-color: var(--psecond); */
}
#box9{
    position: relative;
    transform: translate(212px, -295px) rotate(45deg);
    width: 7px;
    height: 40px;
    /* background-color: var(--psecond); */
}
#box10{
    position: relative;
    transform: translate(238px, -335px) rotate(-45deg);
    width: 7px;
    height: 40px;
    /* background-color: var(--psecond); */
}




.flex6 {
    min-height: 75px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;

}




/* utilities */

.yellow {
    color: var(--psecond);
}

.light {
    font-weight: lighter;
    /* font-style: italic; */
}

.bluee {
    color: var(--pmain);
}
.bluebg{
    color: var(--pmain);
    background-color: var(--pmain);
    border-radius: 6px;
    transition: .4s;
}
.bluebg:hover{
    /* opacity: 50%; */
    background-color: var(--psecond);
    color: var(--psecond);
}

.centree {
    text-align: center;
    padding: .3rem;
}
.hide{
    /* transition: .5s ease-out; */
    display: none;
}

.bottom{
    position: relative;
    transform: translateY(300px);
    font-size: 2rem;
    /* padding: 2rem; */
}
.nohover{
    pointer-events: none;
}
.removepadding{
    padding: 0;
    margin: 0;
}
/* buttons */
.btn {
    background-color: var(--pmain);
    padding: .7rem;
    border-radius: 4px;
    box-shadow: none;
    margin: 3px;
    color: var(--pwhite);
    border: 1.5px solid var(--pbg);
    transition: .3s;
}
.btn:hover{
    background-color: var(--psecond);
    color: var(--pbg);
}
.btn:disabled{
    /* background-color: var(--pwhite); */
    opacity: 40%;
    pointer-events: none;
}

.btns {
    background-color: var(--pmain);
    padding: .7rem;
    border-radius: 4px;
    box-shadow: none;
    color: var(--pwhite);
    border: 1.5px solid var(--pbg);
    transition: .3s;
}
.btns:hover{
    background-color: var(--psecond);
    color: var(--pbg);
}
.btns:disabled{
    /* background-color: var(--pwhite); */
    opacity: 40%;
    pointer-events: none;
}