/* 
*{
    margin: 0%;
    padding: 0%;
}
.header{
    background-color: black;
    display: flex;
    justify-content: space-between;
    
}
.bar{
    display: flex;
    justify-content: space-around;
   margin-right: 20px;
   
}

h4{
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    
    transition: all 1s;
    
}
h4:hover{
    
    font-size: 15pt;
}
a{
    text-decoration: none;
}
img{
    width: 1500px;
    height: 700px;
    
}
.border{
    border: 2px solid black;
    height: 300px;
    width: 300px;
}
 */
 @tailwind base;
 @tailwind components;
 @tailwind utilities;
     *{
        margin: 0;
        padding: 0;
        box-sizing: border-box; 
    }
    body{
        
        font-family: Arial, Helvetica, sans-serif;
       
    }
    header{
       
        position: fixed;
    
        padding-top:20px;
        margin-top: -25px; ;
    }
    nav ul{
        display: flex;
        list-style-type: none;
        text-align: center;
    }
    nav ul li{
        margin: 20px;
        display: inline;
    }
    nav ul li a{
        font-size: 25px;
        color: white;
        text-decoration: none;
        transition: all 1s;
        
    }
    nav ul li a:hover{
        color: rgb(112, 112, 116);
        transform: scale(0.5);
    }

    section{
        padding: 20px;
        
        background-color: #fff;
        border-radius: 5px;
    }
    #home{
        background-color: #023246;
        width: 100%;
        display: flex;
        justify-content: space-around;
      
    }
    #home h1{
        font-weight: bolder;
        color:rgb(11, 11, 55);
        
        animation: anim ease-in-out 4s infinite alternate;}
        @keyframes anim{
            from{
                color:rgb(11, 11, 55) ;
                
            }
            to{
                color: white;
            }
        }
    #home img{
        width: 400px;
        height: 400px;
        border-radius: 400px;
        margin-top: 180px;  
    }
    .content{
       
       justify-content: space-around;
        color: black;
        text-align: center;
        margin-top: 150px;
        height: 550px;
        
        
    }
    .content h1{
        font-size: 3em;
        margin-bottom: 30px;
        color: #fff;
        margin-top: 120px;
        
    }
    #about{
        
        padding: 100px;
        
    }

    #about ul{
        margin: 20px;
        color: #1a2433;
    }
    #about ul li{
        padding: 20px;
        list-style: square;
    }
    
    
    #mainbox{
        display: flex;
         justify-content: space-around;
         margin: 30px;
        
    }
    .box{
        
        box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.773);
        width: 200px;
        height: 100px;
        border-radius: 20px;
        text-align: center;
        padding-top: 30px;
        color: #fff;
    }
    .box:hover{
        box-shadow: 2px 3px 3px 3px rgb(0, 255, 255, 0.421) ;
        transform: scale(1.3) rotate(360deg);
    }
    a{
        text-decoration: none;
    }
   

        
    input{
        padding: 8px;
        margin: 30px; 
        width: 400px;
        
    }
    
    
    
    
    
    
    