body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url(/img/back.jpg);
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
}

.header {
    background-color: #333D79;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 6px 18px;
    align-items: center;
}

.button {
    background-color: #FAEBEF;
    color: #333D79;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    padding: 20px 28px;
}

.button:hover {
    transition: 0.3s;
    background-color:  #e76f51;
}

.box {
    background-color: rgba(226, 225, 225, 0.1);
    max-width: 1200px;
    margin: 40px auto; 
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Grid Layout for Photos and Text */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 columns */
    grid-template-rows: repeat(4, 1fr); /* 4 rows */
    gap: 10px; 
    position: relative;
}

.profile-pic {
    width: 160px;
    height: 160px;
    border-radius: 50%; 
    object-fit: cover; 
    border: 2px solid #333;
    transition: transform 0.3s; 
}

.profile-pic:hover {
    transform: scale(1.1); 
}

.intro-text {
    grid-column: 2 / span 4; /* Spans 4 columns in the center */
    grid-row: 2 / span 2; /* Spans 2 rows in the center */
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1); 
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.intro-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #000000;
}

.intro-text p {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropbtn {
    background-color: #FAEBEF;
    color: #333D79;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    padding: 20px 28px;
    font-size: 18px;
    margin-right: 4rem;
}

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

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

.dropdown:hover .dropbtn { transition: 0.3s;
    background-color:  #e76f51;}