*{
    padding: 0;
    margin:0;
    color:blue;
    }
    /*-------header----*/
    .header{
         background-color: black;
         display: flex;
         flex-direction: column;
    border: 2px solid red;
        padding: 10px;
justify-content: center;
    }
    .header h1{
        text-align: center;
        color: brown;
        font-weight:bold ;
        font-family: 'Times New Roman', Times, serif;
        }
        .header h2{
             text-align: left;
        color: chocolate;
        font-weight: bold;
        font-family: 'Times New Roman', Times, serif;

        }
        .header h3{
            text-align: left;
        color: chocolate;
        font-weight: bold;
        font-family: 'Times New Roman', Times, serif;

        }
    .header h4{
        text-align: center;
        color: chocolate;
        font-weight: bold;
        font-family: 'Times New Roman', Times, serif;
    }
    /*-------search----*/
    .search {
        color: crimson;
        text-align: center;
        padding: 15px 7px 3px ;
        font-size: 10;
        }
    .search button{
        text-align: center;
        background-color: chartreuse;
        color: aqua;
        padding: 1px 8px;
        font-size: 10x;
 }
 /*-------navigator----*/
    .nav{
        display: flex;
        justify-content: right;
        gap: 15px;
        }
        .nav a{
            text-decoration: none;
            color: white;
            background-color: darkblue;
            border: 2px solid red;
            border-radius: 5px;
            padding: 8px 15px;
 }
 /*-------main----*/
 .main{

    height: auto;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: darksalmon ;
    align-items: center;
    }
    /*----signup----*/
    
    /*---form---*/
     .form{
            font-weight: bold;
            color: black;
            background-color:white;
            padding: 20px;
            width: 320px;
            margin : 40px auto; 
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }
        .form input{
            
            border: 2px solid purple;
            border-radius: 10px;
            padding: 5px;
            display: block;
            margin: 15px 6px 8px 50px;
        }
        .btn-submit{
            background-color: darkgreen;
            color: aliceblue;
            border: 2px solid purple;
            border-radius: 10px;
            width: 150px;
            padding: 10px;
            margin: 20px 0px 0px 0px;
            cursor: pointer;
             
            
        
        }
        .form select{
            background-color: hotpink;
            color: dimgray;
            border: 2px solid green;
            border-radius: 10px;
        }
        .form option{
            background-color: chocolate;
            color: darkred;
        }
        .signup-line{
            display: flex;
            justify-content: center;
            align-items: center;
            
            
        }
        .signup-line span{
            white-space: nowrap;
        }
        .signup-line input{
            display: inline-block;
        }
         .btn-login{
            background-color: darkgreen;
            color: aliceblue;
            border: 2px solid purple;
            border-radius: 10px;
            width: 90px;
            padding: 10px;
            display: inline-block;

            cursor: pointer;

         }
          .textarea{
            background-color: white;
            color: black;
            border: 2px solid purple;
            border-radius: 10px;
            padding: 1opx ;
            display: block;
            margin: 15px 0px 10px 55px;
         }
         /*----contact---*/
         .section{
            background-color:aqua;
    border: 2px solid yellow;
        padding: 10px;
             text-align: center;
             font-size: medium;
             margin: 5px auto;
             width: 100%;

         }
         
    /*-------table----*/
 .table{
    
    color: blueviolet;
    text-align: center;
    border-collapse: collapse;
}
.table table{
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    width: 600px;
    font-size: 18px;
}
 .table caption{
    color: darkblue;
    background-color: cyan;
    border: 2px solid black;
    border-radius: 10;
 }
 .table th{
    color:black
 }
 .table td,.table th{
    padding: 15px;
 }
 .table td a{
    display: block;
    width: 100%;
    height: 100%;
    background-color: darkgreen;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
    padding: 10px 0;
    text-decoration: none;
}
/*-------video----*/
.video{
    display: flex;
    justify-content: center;
    padding: 0px 0px 10px;
    }
.video iframe{
    width: 600px;
    height: 300px;
    border: 2px solid crimson;
    border-radius: 10px;
    box-shadow: 0 4px 10px;
    rgba(0,0,0,0.4):
}
/*-------footer----*/
.footer{
    
    background-color:chocolate;
    text-align: center;
    font-size: 20px;
    padding: 20px;
    display: block;
    
    
}




    

