
/* General */ 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #FAF5E9;
    color: #957C3D;
 }
 
/* Navigation Bar */ 

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: #002349;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
  
.logo {
    font-size: 32px;
    color: #957C3D;;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: #957C3D;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}


.navbar a:hover::before {
    width: 100%;
}
         
         





a {
    text-decoration: none;
    transition: .5s;
    color: #fff;
}


ul , li {
    list-style-type: none;
}



/* Container */

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}


.chatGPT{
    color: black;
    border: solid;
    margin: 2rem;
    background-image: url("../images/cGPT.jpg");
}



.dallE{
    color: black;
    border: solid;
    margin: 2rem;
}





.Sora{
    color: black;
    border: solid;
    margin: 2rem;
}




















/* Footer */

footer {
    position: absolute
    bottom: 0;
    width: 100%
    height: 2.5 rem;
    background-color: #002349;
    color: #fff;
    font-size: 18px;
    color: #957C3D;
    font-weight: 500;
    text-decoration: none;
}


.footer_info {
    width: 90%;
    margin: 0;
    display: flex;
    padding: 50px 0;
}

.footer_info , .footer_width {
    padding: 0 15px;
}

.footer_info , h2 {
    margin-bottom: 20px;
}

.about , .contact {
    width: 40%;
}

.link {
    width: 20%;
}

.social-media {
    margin-top: 30px;
}

.social-media ul {
    display: flex;
}

.social-media ul li a {
    display: inline-block;
    margin-right: 50px;
    width: 50px;
    height: 50px;
    padding-top: 12px;
    background-color: transparent;
    border: 1px solid #fff;
    text-align: center;
}

.social-media ul li a:hover {
    background-color: #fff;
    color: #000;
}

.link ul li a {
    display: block;
    margin-bottom: 15px;
    font-size: 20px;
}

.link ul li a:hover{
    color: #000;
}

.contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact ul li span {
    margin-right: 15px;
}


@media screen and (max-width:992px){
    .about , .contact {
        width: 35%;
    }
    
    .link {
        width: 30%;
    }
}

@media screen and (max-width:767px) {
    .about , .contact , .link {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .footer_info {
        flex-direction: column;
    }
}