body {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20;
    background-color: #F1E0C6;
    color: #333333;
}

/*Nav bar start*/
.navbar {
background-color:#6b705c;
}
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: black;
}

.navbar-nav .nav-link {
    color: black;
    font-weight: 300;
    font-size: 1.1rem;
}

.navbar-nav .nav-link:hover {
    color: #ddbea9; 
    text-decoration: underline;
}

h1 {
    text-align: center;
    font-family: "Dancing Script", cursive;
    font-style: normal;
}
h1:hover {
  color: #ff6f91;
  transform: scale(1.05);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
#theDiv {
    width:80% ;
    max-width:800px;
    border: dashed pink 2px;
    padding: 30px;
    margin: 20px auto;
    text-align: left;
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display:flex;
    align-items: center;
    gap: 20px;
}
    #theDiv p {
        flex: 3;
        margin: 0;
    }
    .profile-img{
        flex:1;
        max-width:275px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1)
    }
    
