*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: serif;
    }
    
html
    {  
    scroll-behavior: smooth;

    }
    
    body{
    
    font-weight: bold;
    background-color:  rgb(55, 12, 248);
    background-position: center;
    background-size: cover;
    background:linear-gradient(to top left,rgb(212, 28, 28),#0eddda)
    
    }
    /*Navbar*/
    .navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(8, 7, 9);
    position: static;
    top: 0;
    }
    
    .navbar ul{
    display: flex;
  text-align: left;
  padding: 20px;
    justify-content: space-around;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    }
    
    .navbar ul li{
    display: inline;
    background-color: rgb(197, 16, 53);
    color: white;
    font-family:  Arial, sans-serif;
    font-weight: bold;
    }
    
    .navbar ul li a{
    text-decoration: none;
    font-size: 1.1rem;
    color: white;
    padding: 8px 25px;
    transition: all .5s ease;
    }
    
    .navbar ul li a:hover{
    background-color: whitesmoke;
    color: rgb(77, 3, 3);
    box-shadow: 0 0 10px white;
    }
    
    /*---------Home-------------*/
    #home{
    display: flex;
    flex-direction: column;
    height: 1000px;
    justify-content: center;
    align-items: left;
    color: rgb(21, 0, 0);
    font-size: 1.1rem;
    }
    
    #home::before{
    content: "";
    position: absolute;
    top: 600;
    right:0;
    background: url(https://www.access.net.np/images/cloud-bulk-e-mailing.png) no-repeat center center/cover;
    height : 470px;
    width: 50%;
    z-index:2;
    opacity: .8;
    }
    
    .main{
    display: flex;
    flex-direction: column;
    border: 1px rgb(17, 4, 11);
    align-items: center;
    position: absolute;
    top: 30%;
    left: 10%;
    }
    
    .headings{
    font-family:  serif;
    font-weight: bold;
    text-align:left 
    margin40px 0px;
    }    
    
    #mail{
    border-radius: 24px;
    position: relative;
    backdrop-filter: blur(8px);
    margin-left: 100px;
     border-radius: 8px;
     box-shadow: #030509;
    margin-right: 100px;
    
    }
    
    input[type=file]::file-selector-button 
    {
    margin-right: 20px;
    border: none;
    background: #000300;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
    }

    input[type=file]::file-selector-button:hover
     {
         
        background: #079d82;
    
    }