*{
    text-decoration: none;
    
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



#title {
    text-align: center;
    flex-grow: 1; /* Expand and take up available space in the header */
}

#circular-button {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    cursor: pointer;
}

.circular-button{
    text-decoration: none;
    color: #fff;
    margin-left: 20px;
}

.circular-button:active,.circular-button:visited{
    color: white;
}

.dropdown {
    position: relative;
    display: inline-block;
    float: right; /* Float the dropdown to the right */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 5px 0;
    right: 0; /* Align the dropdown to the right */
}

.dropdown-content a {
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    white-space: nowrap; /* Prevent text from wrapping */
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#about {
    background-color: #f2f2f2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 800px;
}

#about h2 {
    margin: 0;
}

.mailch{
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}