.header{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    position: static;

}

.header-title{
   display: flex;
   justify-content: center;
    font-family: pacifico;
    text-align: center;
    font-size: 40px;
    color: #FFB6CB;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px black;
}

.button-bar{
    display: flex;
    justify-content: center;
    flex: wrap;
    background-color: #f7df90;
    height: 70px;
    margin-top: 10px;
    border-radius: 10px;
    
}

button{
    display: inline-block;
    width: 120px;
    height: 50px;
    background-color: #FFB6CB;
    border-radius: 5px;
    border-width: 2px;
    font-family: pacifico;
    border-color: hotpink;
    color: white;
    cursor: pointer;
    transition: .5s;
    box-shadow: 2px 2px 5px rgb(36, 35, 35);
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 10px;
    display: inline-block
    
    
    
}

button:hover{
    opacity: 0.7;
    box-shadow: 3px, 3px, 8px rgb(32, 32, 32);
}

.dropdown a{
    color: black;
    font-family: arial;
    font-size: 13px;
    text-decoration: none;
    padding: 10px 15px;
    display:block
}

.dropdown .content{
    display: none;
    background-color: rgba(255, 151, 175, 1);
    border-radius: 5px;
    min-width: 100px;
    box-shadow: 2px 2px 5px dark rgb(8, 8, 8);
    position:absolute;
    z-index: 2;
}

.dropdown:hover .content{
    display: block;
}

.dropdown a:hover{
    opacity: 0.7;
    cursor:  pointer;
}

.support-button{
    font-size: 10px;
}
 body{
    background-image: url(assets/bg4.gif);
    background-repeat: no-repeat;
    background-size: cover;
    display:flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    max-width: 100%;
   cursor: url("assets/cursor2.png"), auto;
    
 }

 a,button{
 cursor: url("assets/cursor1.png"), auto;
}

 .chat-body{
    background-color:#FFE8EF;
    border: 10px solid #FFB6CB;
       display:block;
    flex-wrap: wrap;
    justify-content:  center;
    flex-direction: column;
    width: 1350px;
    max-width: 90%;
    height: 650px;
    display: flex;
    margin-top: 15px;
    border-radius: 10px;
    z-index: 1;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
 }

 .chat-body iframe{
    display: flex;
    align-items: flex-end;
    border-radius: 10px;
 }