html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    height: 100%;
}

.back {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 39, 76, 0.6), rgba(0, 39, 76, 0.6)),
        url('assets/northcampus.jpg');
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bold {
    font-weight: bold;
}

header {
    position: relative;
    width: 100%;
}

.logo {
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    z-index: 1;
}

nav {
    height: 80px;
    background: linear-gradient(rgba(255, 203, 5, 0.6), rgba(255, 203, 5, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-links ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 3rem;
}

.nav-links ul li {
    display: flex;
    align-items: center;
}

.nav-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-links ul li a:hover {
    color: #00274C;
}

.nav-links a.active {
    text-decoration: underline;
}

.title-name h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.column-left {
    padding: 0 32px 0 32px;
}

.column-left h1 {
    font-size: 4rem;
    color: #fff;
}

.column-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px 0 32px;
}

.profilepicture-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.profilepicture {
    margin: 0 auto;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 5px solid white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.profilepicture:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 203, 5, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 203, 5, 0.9), 0 0 40px rgba(255, 203, 5, 0.5);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 203, 5, 0.5);
    }
}


.profilepicture img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.profilepicture:hover img {
    transform: scale(1.1);
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.dropbtn {
    background-color: #00274C;
    color: white;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 39, 76, 0.9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 10px;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
}

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

.dropdown-content a:hover {
    background-color: rgba(255, 203, 5, 0.6);
    border-radius: 10px;
}

.dropdown:hover .dropbtn {
    background-color: #00274C;
}

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

@media screen and (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
        padding: 16px;
    }

    .nav-links ul {
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(0, 39, 76, 0.9);
        width: 100%;
        display: none;
    }

    .nav-links.active ul {
        display: block;
    }

    .nav-links ul li {
        display: block;
        text-align: center;
    }

    .nav-links ul li a {
        font-size: 12px;
    }

    .column-left,
    .column-right {
        padding: 16px;
    }

    .column-left h1,
    .column-left .subtitle,
    .column-left .description {
        text-align: center;
        margin: 0 0 20px 0;
    }

    .profilepicture {
        width: 250px;
        height: 250px;
        margin: 20px auto 20px auto;
    }
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 20px;
}