body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #34495e;
    color: white;
    padding: 20px;

    display: flex;
    justify-content: space-between;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

#profile-picture {
    border-radius: 50%;
    width: 75px;
    height: 75px;
}

main {
    padding: 20px;
}

main h1 {
    margin-bottom: 10px;
}

main a {
    color: #3498db;
    text-decoration: none;
}

footer {
    background-color: #34495e;
    color: white;
    padding: 10px;
    text-align: center;
}

#contact {
    /*background-color: #f5f5f5;*/
    padding: 30px;
    text-align: center;
}

#contact h2 {
    margin-bottom: 30px;
}

#contact form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#contact label {
    flex: 1 0 100%;
    margin-bottom: 10px;
    text-align: left;
}

#contact input,
#contact textarea {
    flex: 1 0 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact input[type="submit"] {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
}

#contact input[type="submit"]:hover {
    background-color: #2980b9;
}

#form-box {
    background-color: white;
}

#form-box h3 {
    text-align: center;
    margin-top: 0;
}

#form-frame {
    background-color: #ccc;
    height: 50%;
    overflow: auto; /* to enable scrolling if the content exceeds the height*/
    padding: 20px;
    margin: auto; /* center the box horizontally */
    width: 50%; /* set width of the box */
    text-align: center;
    border: 2px solid #ccc; /* add border around the form */
}

#map-area {

    padding: 20px;
    margin: auto; /* center the box horizontally */
    text-align: center;
    /* border: 2px solid #ccc; add border around the form */
}