
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: white;
    color: black;
    align-items: center;
}

main{
    width: 60%;
    margin-left: 35%;
}

#header{

    width: 30%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    background-color: black;
    position: fixed;

}

#logo{
    width: 100px;
    height: 100px;
    margin-top: 46px;
    margin-left: 38%;
}

#links{

    padding-left: 30px;
    color: whitesmoke;
    margin: 30px auto;

}

.nav-links{

    text-decoration: none;
    color: whitesmoke;
    cursor: pointer;
    padding: 4.2px;
    border: 1px solid black;
    border-bottom: 1px solid whitesmoke;

}

.nav-links:hover{

    border: 1px solid white;

}

h4{

    font-size: 18px;
    padding-left: 50px;
    padding-right: 50px;
    color: whitesmoke;
    text-align: justify;
    font-weight: 200;
    line-height: 30px;
    margin-top: 30px;
    margin: 0 auto;

}

#picture{
    width: 56%;
    height: 310px;
    background-color: whitesmoke;
    margin-top: 40px;
    margin-left: 90px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

#picture > img{
    width: 100.1%;
    height: 100%;
}

.footer{

    width: 30%;
    height: 10vh;
    display: flex;
    flex-wrap: wrap;    
    justify-content: space-around;
    padding-left: 2px;
    margin-top: 90vh;
    background-color: black;
    position: fixed;

}

#icons{

    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 30px;

}

#icons>img{

    /* margin: 1px; */
    width: 25%;

}

h5{

    margin-top: 0px;
    color: whitesmoke;
    text-align: left;
    
}

#topi {
    color: black;
    padding-top: 30px;
    min-height: 70px;
    /* border-bottom: 3px solid #3aaacd; */
}

p{

    text-align: justify;
    margin-top: 170px;
    
}

.para01{

    text-align: justify;
    margin-top: 60px;

}

#topi h1 {
    text-align: center;
    margin: 0;
}

section {
    padding: 20px;
    margin: 20px 0;
}

#container{

    align-items: center;
    padding: 10px;
    /* display: flex;
    flex-direction: row;
    justify-content: space-around; */

}

button{

    border: 1px solid black;
    background-color: white;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 30px;

}

button:hover{

    background-color: lightgray;

}

#demoVideo{
    width: 600px;
    height: 300px;
    border: 10px solid black;
    margin: auto;
    margin-bottom: 60px;
}

.picture{

    width: 600px;
    height: 200px;
    margin-bottom: 60px;
    margin: 0 auto;

}

.picture1{
    width: 600px;
    height: 200px;
    margin-bottom: 60px;
    margin: 0 auto;
}

h5{
    margin: 0;
}

a{
    text-decoration: none;
    color: black;
}

#tools-used > img{
    width: 40%;
    margin-left: 0;

}

/* Add to the existing style.css */

img {
    max-width: 100%;
    height: auto;
    display: block; /* Centers the image if the width is less than the container */
    margin: 10px auto; /* Adds margin below the image */
}

/* Adjusts the header image separately, if needed */
header img {
    max-height: 300px; /* Example to limit header image size */
}


/* Media Queries for Tablet and Mobile Devices */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    main {
        width: 95%;
        /* margin-top: 22vh; */
        margin-left: 30px;
    }

    #header {
        width: 100%;
        height: 22vh;
        position: relative;
    }

    #logo {
        margin-left: auto;
        margin-right: auto;
    }

    #picture {
        display: none;
    }

    #picture > img {
        display: none;
    }

    .picture > img{

            width: 600px;
            height: 200px;
            margin-bottom: 60px;
            margin: 0 auto;
        
    }

    h5{

        margin-top: 20px;
        color: whitesmoke;
        text-align: left;
        
    }

    .footer{
        display: none;
    }

    footer {
        width: 100%;
        height: 5vh;
        display: flex;
        flex-wrap: wrap;    
        justify-content: space-around;
        position: relative;
        background-color: black;
        color: white;
    }
}

@media only screen and (max-width: 768px) {
    main {
        width: 95%;
        /* margin-top: 22vh; */
        margin-left: 10px;
    }

    #header {
        width: 100%;
        height: 34vh;
        position: relative;
    }

    #logo {
        margin-left: auto;
        margin-right: auto;
    }

    #picture {
        display: none;
    }

    #picture > img {
        display: none;
    }

    .picture1{
        width: 100%;
    }

    h5{

        margin-top: 10px;
        color: whitesmoke;
        text-align: left;
        
    }

    p{
        margin-top: 40px;
    }

    .footer{
        display: none;
    }

    footer {
        width: 100%;
        height: 5vh;
        display: flex;
        flex-wrap: wrap;    
        justify-content: space-around;
        position: relative;
        background-color: black;
        color: white;
    }
}

