* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, 'monospace';
}
.quest{
    background-image: url(./basic.webp);
    background-repeat:no-repeat ;
    background-size: cover;
    height: 170vh;
}
.quest1{
    padding: 50px;
    
}
.questrap{
    width: 80%;
    margin: auto;
    background-color: rgba(0,0,0,0.4);
    height: 150vh;
   
}
.quest1 h1{
    text-align: center;
    color: rgb(243, 13, 82);
    font-weight: bold;
    font-size: 35px;
}
.quest1 h1:hover{
    color:  rgb(12, 12, 12);
}
.quest th h1{
   
    color:white;
    padding-left:20px;
}
#basic{
    width: 100%;
    height:5vh;
    border-radius: 20px;
    background-color: black;
    color: white;
    font-size:20px ;
    padding: 20px;
}
#HRA{
    width: 100%;
    height:5vh;
    border-radius: 20px;
    background-color: black;
    color: white;
    font-size:20px ;
    padding: 20px;
}
#DA{
    width: 100%;
    height:5vh;
    border-radius: 20px;
    background-color: black;
    color: white;
    font-size:20px ;
    padding: 20px;
}
#TA{
    width: 100%;
    height:5vh;
    border-radius: 20px;
    background-color: black;
    color: white;
    font-size:20px ;
    padding: 20px;
}
#PF{
    width: 100%;
    height:5vh;
    border-radius: 20px;
    background-color: black;
    color: white;
    font-size:20px ;
    padding: 20px;
}
#NP{
    width: 100%;
    height:5vh;
    border-radius: 20px;
    background-color: black;
    color: white;
    font-size:20px ;
    padding: 20px;
}
#GS{
    width: 100%;
    height:5vh;
    border-radius: 20px;
    background-color: black;
    color: white;
    font-size:20px ;
    padding: 20px;
}
#name1{
    width:70% ;
    height:4vh ;
    /* border-radius: 20px; */
    padding-left: 7px;
    background-color: blue;
    color: white;
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}
#head1{
    margin-left: 20px;
    text-align: left;
}
.quest5 h1{
    text-align: center;
    padding-top: 10px;
    color: white;
}
.quest5 a{
    text-decoration: none;
    color: white;
}
.quest5 h1 a:hover{
    color: rgb(206, 97, 9);
}
.quest5 ul li {

    display: inline;
    padding-left: 70px;
    /* text-align: center; */
    font-size: 30px;
    font-weight: bold;
}

.quest5 ul img {
    width: 50%;
    height: 30vh;
    padding-top: 30px;
}
.quest5 ul li {

    display: inline;
    padding-left: 140px;
    /* text-align: center; */
    font-size: 30px;
    font-weight: bold;
}

/* .quest5 ul img {
    width: 50%;
    height: 30vh;
    padding-top: 30px;
} */
html {
    font-size: 62.5%;
}

body {
     --light: hsl(220, 50%, 90%);
    --primary: hsl(255, 30%, 55%);
    --focus: hsl(210, 90%, 50%);
    --border-color: hsla(0, 0%, 100%, .2);
    /* --global-background: hsl(220, 25%, 10%); */
    --background: linear-gradient(to right, hsl(210, 30%, 20%), hsl(255, 30%, 25%));
    --shadow-1: hsla(236, 50%, 50%, .3);
    --shadow-2: hsla(236, 50%, 50%, .4);
/*  */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Open Sans', sans-serif;
    color: var(--light);
    background: var(--global-background); */
}

a,
a:link {
    font-family: inherit;
    text-decoration: none;
}

a:focus {
    outline: none;
}

button::-moz-focus-inner {
    border: 0;
}


/* box */
.box {
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    /* height: 100vh; */
    /* padding: 0 4rem 2rem; */
}

.box:not(:first-child) {
    /* height: 45rem; */
}

/* .box__title {
    font-size: 10rem;
    font-weight: normal;
    letter-spacing: .8rem;
    margin-bottom: 2.6rem;
} */

.box__title::first-letter {
    /* color: var(--primary); */
}

.box__p,
.box__info,
.box__note {
    font-size: 1.6rem;
}

.box__info {
    margin-top: 6rem;
}

.box__note {
    line-height: 2;
}


/* modal */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;

    display: none;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    /* --m-background is set as inline style */
    background: var(--m-background);
}

/* using :target */
/*
  when users will click/enter button(link) browser will add a #id in a url and when that happens we'll show our users the modal that contains that id.
  */
.modal-container:target {
    display: flex;
}
.modal img{
    width: 100rem;
    padding: 2rem;
}
.modal {
    width: 40%;
    /* padding: 4rem 2rem; */
    border-radius: .8rem;

    color: var(--light);
    /* background: var(--background); */
    box-shadow: var(--m-shadow, .4rem .4rem 10.2rem .2rem) var(--shadow-1);
    position: relative;

    overflow: hidden;
}

.modal__title {
    font-size: 3.2rem;
}

/* .modal__text {
    padding: 0 4rem;
    margin-top: 4rem;

    font-size: 1.6rem;
    line-height: 2;
} */

/* .modal__btn {
    margin-top: 4rem;
    padding: 1rem 1.6rem;
    border: 1px solid var(--border-color);
    border-radius: 100rem;

    color: inherit; */
    /* background: transparent; */
    /* font-size: 1.4rem;
    font-family: inherit;
    letter-spacing: .2rem;

    transition: .2s;
    cursor: pointer;
}

.modal__btn:nth-of-type(1) {
    margin-right: 1rem;
}

.modal__btn:hover,
.modal__btn:focus {
    background: var(--focus);
    border-color: var(--focus);
    transform: translateY(-.2rem);
} */


/* link-... */
.link-1 {
    font-size: 2.8rem;

    color: var(--light);
    /* background: var(--background); */
    box-shadow: .4rem .4rem 2.4rem .2rem var(--shadow-1);
    border-radius: 100rem;
    padding: 1.4rem 3.2rem;

    transition: .2s;
}

.link-1:hover,
.link-1:focus {
    transform: translateY(-.2rem);
    box-shadow: 0 0 4.4rem .2rem var(--shadow-2);
}

.link-1:focus {
    box-shadow:
        /* 0 0 4.4rem .2rem var(--shadow-2), */
        /* 0 0 0 .4rem var(--global-background), */
        0 0 0 .5rem var(--focus);
}

.link-2 {
    width: 4rem;
    height: 4rem;
    border: 1px solid var(--border-color);
    border-radius: 100rem;

    /* color: inherit; */
    font-size: 2.2rem;

    position: absolute;
    top: 2rem;
    right: 2rem;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: .2s;
}

.link-2::before {
    content: '×';

    transform: translateY(-.1rem);
}

.link-2:hover,
.link-2:focus {
    /* background: var(--focus); */
    /* border-color: var(--focus); */
    /* transform: transl8ateY(-.2rem); */
}

.abs-site-link {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: hsla(0, 0%, 1000%, .6);
    font-size: 1.6rem;
}