* {
    padding: 0;
    margin: 0;
}

body {
    background-image: url("assets/bg.png");
    background-size: cover;
    background-attachment: fixed;
    /* background-color: #c6b6e2; */
}

header {
    background: whitesmoke;
    padding: 10px 20px;
    border-bottom: 5px solid rgb(0, 134, 179);
    display: flex;
    align-items: center;
    justify-content: start;
    position: sticky;
    top: 0;
}

header img {
    width: 70px;
    margin-right: 20px;
}

header span {
    font-family: quicksand;
    font-size: 24px;
    font-weight: bolder;
    color: rgb(32, 32, 32);
}

main {
    margin-top: 50px;
    margin-bottom: 100px;
}

main h1,
h2 {
    color: white;
    font-family: Montserrat;
    font-weight: 500;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

main h1 {
    margin: 30px;
    font-size: 40px;
}

main h2 {
    margin-top: 30px;
    font-size: 30px;
}

.dept-block {
    padding: 40px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.card {
    height: 400px;
    width: 350px;
    background: whitesmoke;
    border-radius: 5px;
    cursor: pointer;
}

.card .profile-pic {
    background: whitesmoke;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card .profile-pic img {
    width: 150px;
    border-radius: 50%;
    border: 4px solid rgb(134, 134, 134);
}

.card .profile-pic .name {
    font-family: Montserrat;
    color: rgb(134, 134, 134);
    font-size: 20px;
    margin-top: 10px;
}

.card .profile-pic .dept {
    font-family: Montserrat;
    color: rgb(134, 134, 134);
    font-size: 12px;
    margin-top: 10px;
    text-transform: uppercase;
}

.contact-container {
    background-color: #493D9E;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-family: Montserrat;
    color: white;
    font-weight: 300;
    font-size: 16px;
    text-transform: uppercase;
}

.contact-container .icon-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.contact-container .phone {
    font-size: 18px;
    color: white;
}


@media (width < 768px) {
    header {
        padding: 10px;
    }

    header img {
        width: 50px;
    }

    header span {
        font-size: 18px;
    }

    main {
        margin-bottom: 50px;
    }

    main h1 {
        font-size: 28px;
    }

    main h2 {
        font-size: 20px;
    }

    .dept-block {
        display: flex;
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

    .contact-container {
        gap: 15px;
        font-size: 14px;
    }

    .contact-container .icon-circle {
        width: 35px;
	height: 35px;
}
.contact-container .phone {
	font-size: 15px;
}

}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links span {
    border: 2px solid white;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
}

.social-links a {
    color: inherit;
    text-decoration: none;
}

.social-links i {
    color: whitesmoke;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}
