@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root {
  --nav-color: #fff;
  --nav-text: #083D77;
  --primary-color: #083D77;
  --secondary-color: #F4D35E;
  --hover-color: #DA4167;
  --bg-color: #fff3c9;
}
body {
    background-color: #fff;
    font-family: Arimo, Arial, Helvetica, sans-serif;
    display: flex; flex-direction: column; 
}
html, body { 
    height: 100%; 
    margin: 0; 
    padding: 0;
}
main { 
    flex: 1; 
}
    /** Top white bar with name and nav bar **/
header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        background-color: #fff;
        padding: .5rem 1rem;
        text-align: center;
    }
    /**inside the white bar**/
nav{
        background-color: var(--nav-color);
        font-size: 18px;
    }
    ul.nav {
        list-style-type: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        display: flex;
        justify-content: flex-end;
        }
nav a{
              padding: 1rem;
              text-decoration: none;
              color: var(--nav-text);
              border-bottom: 2px solid transparent;
           }
nav a:hover{
              border-bottom: 2px solid #fff;
              background-color: var(--hover-color);
           }
a:link, a:visited {
              color: var(--nav-text);
              text-decoration: none;
              border-bottom: 2px solid transparent;
           }
a:hover{
              border-bottom: 2px solid var(--hover-color);
           }
    td {
        padding: 10px;
    }
.d-flex { 
    display: flex;
}

.name {
        display: flex;
        flex: 1;
        margin: 0;
        font-size: 24px;
        font-weight: bold;
    }
    /**for the interview section**/
.interview {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid #083D77;
    background-color: var(--bg-color);
    border-radius: 4px;
}
    /**main box**/
.box {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        background-color: #fff;
        padding: 20px;
        margin: 20px;
        border-radius: 5px;
    }
    /**the box with the lemons in it**/
.container {
        max-height: 400px;
        background-color:#083D77;
    }
.lemonbox {
        background-image: url(images/Smallemon.png);
        background-color:aqua;
        background-size: cover;
        width: 100%;
        min-height: 50vh;
        margin: 0 auto;
    }
.smallerlemonbox {
        background-image: url(images/nolemon.png);
        background-color:aqua;
        background-size: cover;
        max-width: 100%;
        max-height: 100%;
        color: black;
    }
    /**yellow box underneath the lemons**/
.aboutmeblock {
        background-color: #fff3c9;
        padding: 20px;
        margin: 20px;
        border-radius: 5px;
    }
.image-text {
    font-size: 300px;
    font-weight: 900px;
    background-image: url(nolemon.png);
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.gallery-grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 6px;

}
.gallery-item {
    border-radius: 8px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .2s;
    margin: 0 auto;
}
.gallery-grid img:hover {
    transform: scale(1.4);
}
.nav2box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.nav2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.nav2 a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
}
footer {        
        text-align: center;
        padding: 10px;
        color: #083D77;
    }
.interview {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid #083D77;
    background-color: var(--bg-color);
    border-radius: 4px;
}



