* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    font-family: serif;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer {
  left: 0;
  bottom: 0;
  width: 100%;
  color: black;
  text-align: center;
}

body {
    font-family: 'Rubik Mono one';
    background: #fff;
    color: #000;
    line-height: 1.6;
    width: 90%; 
    margin: 0 auto; 

}

table tr td {
    position: relative;
    vertical-align: top;
    /* padding-botton: 1rem; */
    padding-bottom: 1rem;
    line-height: 1.2; 
}

table {
  border-collapse: separate;
  border-spacing: 0.8em 0em;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
    padding: 1rem; 
    padding-bottom:0;
    padding-top:0;
    width: 25%;
}

.column img {
  margin-top: 2rem;
  vertical-align: middle;
}

.cv-column {
  flex: 50%;
  padding: 2rem;
}

.cv-row{
  margin: 0 auto; 
  overflow: hidden; 
}

.bio-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #FFFFFF;
    display: block;
    margin-bottom: 1rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.site-title a {
    color: #000;
    text-decoration: none;
}

.blue-wave-text{
   align-self: center;
}

.blue-wave{
    height: 30rem;
    object-fit: contain;
    /* height: 100%; 
    margin-bottom: 10rem; */
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.6;
}

.intro {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 75%;
    
    color: #333;
    margin: 0 auto;
}

.gallery-image:hover {
    opacity: 0.7;
}

.gallery-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #FFFFFF;
    display: block;
    /* margin-bottom: 4rem; */
}

.gallery-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.gallery-details {
    font-size: 0.9rem;
    color: #666;
}


.bw-image{
    /* height: 30rem; */
    margin: 0rem;
    object-fit: contain;
    /* height: 100%; 
     */
}

    .footer {
        left: 0;
        bottom: 0;
        margin-bottom: 2rem;
        margin-top:2rem
    }

@media (max-width: 968px) {
    .gallery {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .container {
        padding: 2rem 2rem 4rem;
    }
    
    .column{
        width: 50%;
    }
    
    .cv-column{
        flex:100%;
    }

    header {
        padding: 1.5rem 2rem;
    }

    nav {
        gap: 1.5rem; 
    }

    .intro {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .site-title {
        font-size: 1.2rem;
    }

    .intro {
        font-size: 1rem;
    }

    .gallery {
        gap: 2rem;
    }
    
    .column{
        width:100%;
    }
    
    .cv-column{
        flex:100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    nav {
        gap: 1rem;
    }
}

.dropbtn {
  background-color: #FFFFFF;
  color: black;
  padding: 0px;
  font-size: 16px;
  text-align: center;
  font-family: serif;
  border: none;
}

.dropdown {
  position: left;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: gray;
  padding: 1px 1px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {color: #000;}

.dropdown:hover .dropdown-content {display: block;}



textarea{
    font-size:16px;
    white-space: normal;
    text-align: justify;
    width:50%;
    box-sizing: border-box;
    resize: none;
}
