*{
    margin:0;
    padding:0;
    font-family: century;
}
.container{
        width: 100%;
          height: 700px;
          background-image: url(images/WELCOMING\ PAGE.png);
          background-position: center;
          background-size: cover;
          padding-left: 8%;
        padding-right: 8%;
        box-sizing: border-box;
    
      }
      .navbar{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgba(0, 0, 0, 0.5);
        position: sticky;
        top: 0;
    }
    .navbar ul{
        display: flex;
        list-style: none;
        margin: 20px 0px;
    }
    .navbar ul li{
        display: inline-block;
        font-family: century;
        font-size: 1.1rem;
        font-weight: bold;
    }
    .navbar ul li a{
        text-decoration: none;
        color: white;
        padding: 8px 25px;
        transition: all .5s ease;
    }
    .navbar ul li a:hover{
        background-color: white;
        color: black;
        box-shadow: 0 0 10px white;
    }
.main{
    display: inline;
    flex-direction: column;
}

.row{
    display: contents;
    height: 88%;
    align-items: center;
    text-align: center;
}
.col{
    flex-basis: 50%;
}
h1{
    color: #ffffff;
    text-shadow: 0 0 10px;
    font-size: 80px;
}
/*Footer Section*/
footer {
    background-color: lightslategray; /* Replace with your desired background color */
    padding: 20px; /* Add some padding to the footer content */
    text-align: center; /* Center-align the content within the footer */
  }