
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
* {
    box-sizing: border-box;
}
html{
    margin: 0;
    padding: 0;
    background-color: #3A755F;
    background-image: url(/images/park.jpg);
    background-size: cover;
}
.tst-header{
    text-align: center;
    margin-bottom: 0;
    
}
.tst-header a{
    text-decoration: none;
    font-weight: 400;
    text-shadow: 0 0 3px;
    color: rgb(247, 247, 247);    
}

.tst-header ul{
    list-style-type: none;
    margin: 0;
}

.tst-header li{
    display: inline-block;
    padding-left: 1.5em;
    font-family:sans-serif;
    font-size: large;
    
}
.tst-header li::after{
    content:'|';
    margin-left: 30px;
    color: rgba(0, 46, 131, 0.76);
    font-size: 25px;
    text-shadow: 0 0 10px;
}
.tst-header li:last-child::after{
    content:'';
}
.tst-header li :hover{
    border-bottom: 2px solid;
    font-size: 110%;
}
.main{
    position:absolute;
    top:100px;
    left:300px;
    height:1000px;
    width:1000px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:rgb(213, 236, 220);
    background-color:#05774dea;
    border-radius: 0  10% 10% 10%;
    font-family: 'Quicksand';
    text-shadow: 0 0 5px;
    border-left:none;
}
.main p{
    font-size: large;
}

.side{
    position: absolute;
    left:100px;
    top:100px;
    width:200px;
    height:fit-content;
    background-color:#05774dea;
    border-right: none;
    border-radius: 5% 0 0 10%;
    border-right: 2px solid white;
    color:rgb(213, 236, 220);
    font-family: 'Quicksand';
    text-shadow: 0 0 5px;
    font-size:small;
    padding:0px;
}
.side h2{
    padding-left:2px;
    padding-bottom:3px;
    margin-bottom: 0;
}
.side-list{
    font-size: large;    
}
.side ul{
    padding: 0;
    margin: 0;
    margin-left: 15px;
    padding-bottom: 20px;
}
.side-list li{
    padding-bottom:2px;
    padding-left:0px;
    margin-left: 3px;
    
}
.side-list a{
    color: white;
    text-decoration: none;
}



.welcome{
    position: absolute;
    top:50px;
    left:730px;
    text-align: center;
    color: rgba(24, 77, 175, 0.753);
    margin-top: 0;
    font-family: 'Quicksand';
    font-weight: 500;
    text-shadow: 0 0 10px,0 0 20px,0 0 30px;
    font-size: xx-large;
}
.scroll-box{
    
    overflow-y: auto;
    position: relative;
    height: 3000px;
    scrollbar-width: none;
}
.section , .section2, .final{
    background-image: url(../images/city2.jpg);
    position: absolute;
    left: 200px;
    align-items: center;
    width: 700px;
    height: 500px;
    border-radius: 7%;
    box-shadow: 0 0 15px rgba(216, 60, 255, 0.834);
}
.section h2, .section2 h2, .final h2{
    border:none;
    border-bottom-style:solid;
    border-color: rgb(9, 7, 53);
    font-family: "Tilt Neon";
    font-weight: 400;
    font-optical-sizing: auto;
    text-shadow: 0 0 10px rgb(68, 20, 95);    
}
.section p, .section2 p{
    overflow: auto;
    padding: 10px;
    font-family: "Tilt Neon" sans-serif;
    color: azure;
    font-size:larger;
    text-shadow: 0 0 1.3px;
    text-align: left;
}
.section img, .section2 img{
    float: right;
    margin: 10px;
    border-width: 4px;
    border-style: solid; 
    border-image: url("https://i.imgur.com/e3EPu48.png") 12 fill round;
    border-radius: 10%;
    box-shadow: 0 0 5px rgb(93, 30, 230);
    border-color: rgb(4, 3, 5);
}
.section2{
    top: 550px;
    left: 730px;
}
.final {
    top: 1000px;
    left: 300px;
    width: 900px;
    height: 900px;
}
.final p , .shape p{
    overflow: auto;
    padding: 10px;
    font-family: "Tilt Neon" sans-serif;
    color: azure;
    font-size:larger;
    text-shadow: 0 0 1.3px;
    text-align: center;
    border-bottom-style:dashed;
}
.final h2{
    color: rgb(39, 12, 53);
    text-shadow: 0 0 5px rgb(195, 181, 202);
    text-align: center;

}
.final h3{
    text-align: center;
    color: azure;
    text-shadow: 0 0 1.3px;
    padding:2px;
    padding-bottom: 30px;
}
.images{
    position: absolute;
}
.images li{
    display: inline-block;
    padding-left: 20px;
    align-items: center;
    list-style-type: none;
    margin: 0px;
}
.images h1{
    border: none;
    margin: 0px;
    padding: 0px;
    max-width:20px;
    color: white;
    text-align: left;
    font-family: 'Quicksand';
    font-weight: 300;
    text-shadow: 0 0 5px,0 0 10px;
}
.note{
    position: absolute;
    left: 50px;
    top:100px;
   
}
@keyframes nod{
    0%{transform: rotate(0deg);

    }
    50%{  transform: rotate(15deg);
    }
    100%{
      transform: rotate(0deg);
    }
}
.container{
    position: relative;
    width:fit-content;
    margin: 0px;
    padding: 0px;

}
.container img{
    display:block;
    height: 100px;
    width: 100px;
    border-radius: 7%;
    margin: 0px;
    animation:nod 1s steps(1);
    animation-iteration-count: infinite;
}
.ranting{
    font-size: larger;
    margin-bottom: 20px;
}