*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    }
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
      
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
    }
    
    .container {
        max-width: 600px;
        margin: 100px auto;
        text-align: center;
        background: transparent; 
        filter: contrast(2);
        color: white;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: -50px;
        justify-content: space-between;
        font-size: 25px;
        height: 490px;
        margin-top: 110px;
    }
    
    .logo {
        width: 135vh;
        height: 50vh;
    }
    
    h1 {
        color: #333;
        margin-top: 100px;
    
    }
    
    .about, .contact {
        margin-top: 85px;
    }
    
    h2 {
        color: #333;
    }
    
    p {
        color: #666;
    }
    .logo-container{
        height: 450px;
        margin: 20px;
        margin-top: 190px;
        padding-left: 100px ;
    }
    /* Media Query for Mobile */
    @media only screen and (max-width: 768px) {
        body{
            display: flex;
            flex-direction: column;
            height: 500px;
            width: auto;
        }
        .logo{
            width: 420px;
            margin-left: -150px;
            height: 250px;
            margin-top: -150px;
        }
        .container{
            margin-bottom: 450px;
            margin-top: -90px;
            height: auto;
        }
        
    }
    /* Media Query for Tab */
    @media only screen and (min-width:768px) and (max-width: 991px) {
        body{
            display: flex;
            flex-direction: column;
        }
        .logo{
            width: 750px;
            margin-top: -130px;
            height: 550px;
            margin-left: -90px;
        }
        .container{
            margin-top: -130px;
        }
    }
   