
body {
    font-family: 'Jersey 10', sans-serif;
    /* padding: 10px; */
    margin: 0;
}

header {
    background-color: rgb(29, 28, 28);
    /* background-image: url('assets/dogsup.gif'); */
    background-repeat: no-repeat;
    background-position: center center;
    color: white;
    text-align: center;
    /* padding: 1em; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 250px; */
}

.circular-dp {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 1rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
    padding: 0.5em;
    margin: 1rem 1rem;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white for a soft look */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    max-width: 200px; /* Adjust based on your design needs */
}

.links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin: 0.2rem 0
}

.links img {
    /* width: 34px; Adjust to your preference */
    height: 34px;
    /* filter: grayscale(100%); */
}


.school-logo {
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effect */
    display: block; /* Makes sure the margins work correctly */
    margin: 0 auto; /* Centers the image if the anchor block is wider */
}

.school-logo:hover {
    transform: scale(1.1); /* Slightly increase the image size on hover */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
}


.container {
    display: flex;
    flex-wrap: wrap;
    /* font-family: 'Courier New', Courier, monospace; */
}

.section {
    flex: 1;
    max-width: 40%;
    margin: 10px;
    padding: 10px;
}
.section education{
/* max-width: 10%; */
margin-right: auto;
background-color: blue;
}


.section h2 {
    color: #0077cc;
    border-bottom: 2px solid #0077cc;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  
  .section ul {
    list-style: none;
    padding: 1rem;
  }
  
  .section ul li {
    list-style: circle;
    padding: 10px 0;
    border-bottom: 1px solid #e1dddd;
  }
  
  .section ul li:last-child {
    border-bottom: none;
  }
  
  .section a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .section a:hover {
    text-decoration: underline;
  }
.section img{
    height: 100px;
}

@media only screen and (max-width: 600px) {
    .container, .section {
        flex-direction: column;
        width: 100%;
    }
}

.chat-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.chat-messages {
    max-height: 300px;
    overflow-y: scroll;
}
