*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;

}

.box1 {
width: 1166px;
height: 142px;
background-color: brown;
/* border: 2px solid black; */
}

h1{
   
    font-size: 75px;
    color: aliceblue;
    display: flex;
justify-content: center;

}

h2{
    font-size: 20px;
    color: aliceblue;
    display: flex;
    justify-content:center ;
}

.box2{
    border: 2px solid rgb(238, 235, 235);
    background-color: rgb(55, 55, 155);
    gap: 10px;
    display: flex;
    justify-content: center;
    border-style: dotted;
    margin-top: 15px;
}

p{
cursor: pointer;
font-size: 25px;
display: flex;
align-items: center;
height: 40px;
color: aliceblue;
}

@media (max-width:1000px) {
p{ font-size: 10px;}

}

p:hover{
     background-color: rgba(178, 7, 7, 0.48);
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.box3{
    border: 2px solid black;
   height: 400px;
   text-align: center;
   overflow: hidden;

   
    
    

}

.box4{
    text-align: center;
    background-color: brown;
    color: aliceblue;
    font-size: 30px;
   
}

.vsa{
font-size: 25px; 
color: aliceblue;
background-color: rgba(55, 55, 155, 0.916);
text-align: center;
list-style: none;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.vsa:hover{
    background-color:brown ;
}

.box3 p{
    color: brown;
    font-size: 20px;
    background-color: rgba(213, 10, 10, 0.695);
    color: aliceblue;
    border-radius: 15px;
    display: flex;
    justify-content: center;
}

.box3 ul{
    border: 3px solid black;
    margin-top: 5px;
    margin-bottom: 5px;
    list-style: none;
    font-size: 20px;
    border-radius: 20px;
    text-align: center;
    animation: slide 100s infinite;

}

@keyframes slide{
    0%{transform: translateY(350px)}
    100%{transform: translateY(-50cm);}

}

.box3 li{
    display: inline-block;
}


.box3 h4{
    display: inline-block;
}

.state ul{
    display: flex; 
    flex-wrap: wrap; 
   margin:0%;
    list-style: none; 
    align-items: center;
    justify-content: center;
    
}

.state li{ 
    font-size: 20px; 
    margin-bottom:2px;
    margin-right: 2px; 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(119, 44, 44);
    color: aliceblue;
    box-shadow: rgba(246, 244, 244, 0.4) 0px 2px 4px, rgba(250, 248, 248, 0.3) 0px 7px 13px -3px, rgba(251, 250, 250, 0.2) 0px -3px 0px inset;
    transition: 0.5s;
    cursor: pointer;
    width: 50px;
   
    
}

.state li:hover{
    transform: scale(1.5);
    background-color: rgb(16, 16, 89);
    
}

.state a{
    text-decoration: none;
}