/* Add CSS styles for your web site here and use them in index.html. */
html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100vh;
}
body {
    font-family: sans-serif;
    margin: 0;
    padding: 15px;
}
.light-mode {
    color:#0B132B;
    background-color: aliceblue;
    button {
        background-color: #0B132B;
        color: aliceblue;
    }
    nav a {
        color:#0B132B;
    }
    footer a {
        color:#0B132B;
    }
}
.dark-mode {
    color: rosybrown;
    background-color: #0B132B;
    button {
        background-color: rosybrown;
        color:#0B132B;
    }
    nav a {
        color:rosybrown;
    }
    footer a {
        color:rosybrown;
    }
}
.nav-div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    height: 50px;
    margin: 10px 0;
    padding: 0 20px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
nav a {
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    padding: 6px 10px;
    transition: all 0.3s ease;
}
nav a:hover {
    text-shadow: 0 0 10px rosybrown;
}
.bento {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 5px 10px;
    background: none;
    border-radius: 2px;
    max-width: 900px;
    height: fit-content;
    gap: 16px;
    margin: auto;
}
.it1 {
    grid-column: span 2;
    grid-row: span 1;
}
.it2 {
    grid-column: span 1;
    grid-row: span 1;
}
.it3 {
    grid-column: span 1;
    grid-row: span 1;
}
.it5 {
    grid-column: span 2;
    grid-row: span 1;
}
.it4 {
    grid-column: span 1;
    grid-row: span 1;
}
.it6 {
    grid-column: span 1;
    grid-row: 1;
}
.it7 {
    grid-column: span 1;
    grid-row: span 1;
}
.img {
    border-radius: 12px;
    border: none;
    padding: 0;
    background: none;
    font-weight:300;
    line-height: normal;
    box-shadow: 5px 4px 12px #000;
}
.bento img {
    overflow: hidden;
    border-radius: 12px;
    border: none;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
button {
    border: none;
    border-radius: 8px;
    margin-top: 20px;
    display:block;
    padding: 13px 16px;
    margin:auto;
}
button:hover {
    font-weight: bold;
    padding: 10px 14px;
    transition: all 0.4s ease;
}
.gsap-img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    overflow: hidden;
    border: none;
    border-radius: 17px;
    margin: auto;
    padding: 0;
    align-items: center;
    box-shadow: 5px 4px 12px #000;
}
.gsab-btn {
    margin : 20px;
}
h1,
h3 {
    text-align: center;
}
h1:hover,
h3:hover {
    color: rosybrown;
    text-shadow: 0px 0px 10px aliceblue;
    transition: all 0.4 ease;
}
.clic {
    margin: 20px;
}
.social a {
    display: flex;
    gap: 20px;
    margin: 20px;
    flex-direction: row;
    justify-content: center;
    text-decoration : none;
}
footer p {
    font-size: small;
    text-align: center;
}
.light-dark {
    border-radius: 20px;
    padding: 10px;
    border:none;
}