body {
    background-color: rgb(231, 219, 204);
    height:auto;
    margin-left:40px;
}

button {
    background-color: rgb(91, 66, 51); 
    border: none;
    color:  rgb(231, 219, 204);
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    transition-duration: 0.2s;
    font-family: Azeret Mono;
    border-radius: 15px;
}


button:hover {
    background-color: rgb(31, 20, 13); 
    color: rgb(231, 219, 204);
    cursor: pointer;
    padding: 1rem 1.5rem;
}

p {
    font-family: Azeret Mono;
    margin-top:0;
    margin-bottom:0;
    color:rgb(31, 20, 13);
    text-align: center;
}

.title{
    margin-top:100px;
    margin-bottom: 40px;
    font-size:60px;
    display:flex;
    justify-content: center;
    font-family: "Press Start 2P", system-ui;
}


.bio{
    margin-top:40px;
    font-size:20px;
    line-height: 40px;
    margin-bottom:30px;
    width:70%;
}

.video {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    gap: 20px;
    margin: 20px 100px 70px 100px;
    padding: 20px;
}

.heading {
    font-size: 30px;
    margin:20px;
}

.image {
    object-fit: cover;
}

.gallery {
    border-radius: 3px;
    display:flex;
    gap: 10px;
}

.title-box {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction:column;
    margin-top: 100px;
}

.fa:hover {
    opacity: 0.8;
}

.fa-linkedin {
    /* background: #007bb5; */
    color:rgb(31, 20, 13);
}


.fa {
    padding: 0px;
    font-size: 40px;
    width: 50px;
    text-decoration: none;
    margin: 5px 40px;
    color:rgb(31, 20, 13);
    /* border:5px solid rgb(31, 20, 13); */
    /* border-radius: 500px; */
}

.socials {
    display:flex;
}




/* Make images and videos responsive */
/* .image,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
} */

/* Responsive title and bio */
/* .title-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
}

.title {
    font-size: 2.5rem;
}

.bio {
    font-size: 1.2rem;
    margin: 1rem 0;
} */

/* Social icons spacing */
.socials a {
    margin: 0 0.5rem;
    font-size: 2rem;
}



/* Responsive galleries */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.gallery .image {
    width: 100%;
    max-width: 315px;
    /* height: auto; */
    object-fit: cover;
}

/* Responsive video container */
.video {
    margin: 2rem 0;
}

/* Media Queries for mobile */
@media (max-width: 700px) {



    .title-box {
        padding: 0.5rem;
    }
    .video iframe,
    .video video,
    .video img {
        width: 100% !important;
        height: auto !important;
        max-width: 100vw;
    }
    .gallery {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra small screens */
/* @media (max-width: 400px) {
    .title {
        font-size: 1.3rem;
    }
    .bio {
        font-size: 0.9rem;
    }
    .socials a {
        font-size: 1.5rem;
    }
} */