body{
    font-family: Arial, sans-serif;
    margin: 5px;
}
#head img{
    width: 100%;
    height: 20%;
}
#yellow {    
    display: flex;
    justify-content: space-around;
    transition: all 5s;
}

#yellow span {
    background-color: rgb(203, 203, 39);
    padding: 12px;
    font-size: 0.9rem;
    transition: transform 1s; 
    display: inline-block; 
    border: 1px solid;
    border-radius: 10px;
}

#yellow span:hover {
    background-color: rgb(233, 233, 49);
    transform: scale(1.1); 
    transform: rotateY(40deg);
    box-shadow: 3px 13px 12px #888888, -3px -3px 5px #444444;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(244, 244, 96);
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
    transform-origin: top left; 
}

.dropdown-content a {
    color: black;
    padding: 6px 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgb(233, 233, 49);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown span:hover {
    cursor: pointer;
    color: #555;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grid-item {
    text-align: center;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 5px 5px 4px 5px rgba(0, 0, 0, 0.1);
}

.grid-item p {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    transition: transform 3s;
    height: 25px;
}
.grid-item p:hover {   
    transform: scale(1.05) rotateY(-360deg);
    box-shadow: 3px 13px 12px #888888, -3px -3px 5px #444444;
}

#box2 p{
    font-family: 'Verdana', sans-serif;
    margin:20px 50px;
    padding: 25px;
    background-color: rgb(162, 222, 252);
    width: 70%;    
}


button{
    font-family: monospace;
    font-size: 1.2em;
    margin-left:50px;
    margin-top: 5px;
    padding: 5px;
    border: 0.2px solid black;
    border-radius: 10px;
    color: rgb(30, 103, 187);
    background-color: white;
    transition: all 0.7s;
}
button:hover{
   
    color: rgb(19, 18, 18);
    background-color:rgb(235, 243, 96);
    transform: scale(1.1);
}
a{
    text-decoration: none;
    cursor:progress;
}

#container{
    display: flex;
    align-items: flex-start;
}
#box1 img
{
    height: 290px;
    width: 700px;
    aspect-ratio: 1;
    filter: grayscale(100%);
    transition: filter 1.5s ease;
}
#box1 img:hover{
    filter: grayscale(0%);
}
#box2{
    margin-right: 20px;
    width: 60%;
}

h2{
    margin-left: 40px;
    text-decoration: underline;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#about h3{
    text-decoration: underline;
    text-align: center;
    
}
.footer {
    background-color: #f1f1f1;
    padding: 20px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    background-color: #b3caec;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.footer-column h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

#tabs
{
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSf7usR4qzZ5g0-GXZkcWI7VCXlePk7L1y5dKPOurrdRFQu1Tb1OfJl2J0vVb7ZUt2-WaE&usqp=CAU");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin: 50px;
    padding: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.3em;
}

#line1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    justify-content: space-between; 
    text-align: center;
}

#line1 span {
    background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTR9MLkCDvMdrutd_rTaEKMCtfDQBb7SeHqxQ&s");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 25px;
    border-radius: 16px;
    width: calc(33% - 40px);
    box-sizing: border-box;
    transition: all 1s;
}
#line1 span:hover{
    transform: scale(1.2);
    animation: rotate 0.8s infinite alternate ease-in-out;
}
@keyframes rotate {
    0% {
        transform: scale(0.86) rotate(0deg);
    }
    50% {
        transform: scale(1.03) rotate(3deg);
    }
    100% {
        transform: scale(1.03) rotate(-6deg);
    }
}
.gallery-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    position: relative;
    
}

.gallery {
    display: flex;
    transition: transform 1s ease;
    gap: 50px;
}

.gallery img {
    width: 25%;
    flex-shrink: 0;
    transition: transform 1s ease;
}
.gallery img:hover{
    transform: scale(1.1);
}
.cursor{
    cursor: pointer;
}