{
    margin: 0;
    padding: 0;
}
		
body {
    font: 300 15px/1.5 , helvetica, arial;
    background: white;
    margin: 15px;
}

#h1 {
    text-align: left;
    margin-left: 7%;
    width: 100%;
}

#h1 button {
    position: relative;
}

h1, h2, h3, nav{
    margin: -1px;
}

h2 {
    margin-top: 30px;
    text-align: center;
}

h2 img{
    width: 100%;
}
            
h3 {
    text-align: center;
    margin-top: -8px;
}
h3 img{
    width:100%;
}
            
nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 6vh;
    background-color: #7D3C98;
    font-family: 'Permanent Marker', cursive;
    height: 25px;
}

.logo{
    color: whitesmoke;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 19px;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 70%;
    
    
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: whitesmoke;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.burger div{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 5px;
    background-color: whitesmoke;
    margin: 3px;
    transition: all 0.3s ease;
} 

@media screen and (max-width: 1024px){
    .nav-links{
        width: 50%;
    }
}

@media screen and (max-width: 768px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 50vh;
        top: 60vh;
        background-color: #7D3C98;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 40%;
        transform: translateX(100%);
    }
    .nav-links li{
        opacity: 0;
    }
    .burger div{
        display: block;
    }
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-6px,10px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-12px,8px);
}

a {
    color: #06c;
}
            
		
#nav ul {
    float: left;
    -webkit-transition: .5s;
    transition: .5s;
    text-transform: uppercase;
}
		
#nav li {
    float: left;
    position: relative;
    width: 170px;
    list-style: none;
    -webkit-transition: .5s;
    transition: .5s;
}
		
			
		
#nav a {
    display: block;
    text-decoration: none;
    padding: 5px 5px;
    color: white;
    margin-left: 30%;
}

#nav ul ul {
    position: absolute;
    top: 100%;
    margin-left: 5%;
    opacity: 0;
}
		
			
#nav li:hover, #main_nav li:hover li {
    background: #C39BD3 ;
}
		
#nav li li:hover, #main_nav li li:hover li {
    background: #EBDEF0 ;
}
		
#nav li li li:hover {
    background: #F9EBEA;
}
		
#nav li:hover > ul {
    visibility: visible;
    opacity: 1;
}

guide {
    text-transform: uppercase;  
    list-style: none;
    color: #4A235A;
    margin-top: 2%;
    width: 100%;
}
           
p {				
    color:#880E4F ;
    font-family: 'Merienda', cursive;
    font-size:20px;
    text-align:left;
}

p1{
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
}