*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navigation{
display: flex;
flex-direction: row;
height: 102px;
position: sticky;
z-index: 1;
top: 0;
left: 0;
background-color: teal;
border-bottom: 2px solid peachpuff;
}
.navigation #first{
    height: 100px;
    width: 400px;
    margin-left: 30px;
}
#first img{
    width: 200px;
    height: 100px;
    align-items: center;
    margin-left: 100px;
    
}
.navigation #second {
    width: 50%;
    text-align: center;
    align-content: center;
    margin: 0 auto;
}
.navigation #second ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    text-align: center;
    align-items: center;
  margin-left: 20%;  
  
}
.navigation .nav_list a{
    text-decoration: none;
    font-family: 'Oleo Script';
    color: white;
    font-size: 30px;
    display: inline-block;
   margin: 30% 15px;
   text-transform: capitalize;
   cursor: pointer;

}
.navigation #second a:hover{
color: black;

text-decoration: line-through;
text-decoration-color: red;

text-decoration-line: underline;

transform-origin: 2px;
transition: 0.5s;
}

.navigation #second a::after{
text-decoration: line-through;
text-decoration-color: red;

text-decoration-line: underline;

}


















.home{
    display: flex;
    background-color: slategrey;
}

.home .text_area{
    margin-left: 20%;
    display: flex;
    flex-direction: column;
    width: 20%;
    margin-top: 100px;
    
}
.home .text_area h3{
    color: rgb(255, 0, 0);
    font-size: 30px;
    text-align: center;
   
}
.home .text_area span{
    color: rgb(4, 255, 142);
    font-size: 35px;
    text-align: center;
    height: fit-content;
   
}
.home .img_area img{
    margin: 20px;
}
.home .text_area .but a{
    text-decoration: none;
    font-family: 'Oleo Script';
    font-size: 30px;
    width: 130px;
    display: inline-block;
   margin: 10% 25px;
   border: 2px solid red;
   text-align: center;
   background-color: aliceblue;
   text-transform: capitalize;
   cursor: pointer;
   overflow: hidden;
   transition: transform .5s ease;
}
.home .text_area .but a:hover{
    background-color: black;
    color: whitesmoke;
   
    transform: scale(1.2);
}
#links{
    text-align: center;
    height: 70px;
    
}
#links i{
    margin: 10px;
    
    font-size: 45px;
    cursor: pointer;
   transition: transform .5s ease;

}
#links a{
   height: 100px;
    cursor: pointer;
    color: black;
}
#links a:hover{
    color: blue;
  
}
#links i:hover{

   
    transform: scale(1.6);

}
