body, html {
    background-color: #0082ad;
    font-family: Tahoma;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

.header-content {
    margin-left: 25px;
}

.nav-content {
    white-space: nowrap;
}

.nav-content h2,
.nav-content nav {
    display: inline-block;
    vertical-align: middle;
}

.nav-content nav a {
    margin-left: 15px;
    text-decoration: none;
}

.content {
    margin: auto;
    width: 40%;
    text-align: center;
}

.footer {
    background-color: #034d66;
    color: white;
    text-align: center;
    margin-top: 15px;
    padding: 25px 0;
    width: 100%;
  }

a {
    color: white;
    text-decoration: none;
}

a:hover {
    color:#00A0C6; 
    text-decoration:none; 
    cursor:pointer;  
}

#contact-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #fc7303;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 25px;
}

#contact-button:hover {
    background-color: #45a049;
}

h1 {
    margin-top: 30px;
}