
body, html {
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

header {
   
    background-size: cover;
    
}
.title-shadow {
    filter: drop-shadow(0 0 0.75rem #0073e6);

}

header h1 {
    font-size: 3rem;
    font-weight: 800;
}

header p {
    font-size: 1.5rem;
    font-weight: 300;
}

section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}


footer {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    height: 33vh; /* Set height to 1/3 of the viewport height */
}



footer p {
    margin: 0;
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .leftDiv {
        width: 50%;
        float: left;
      }
      
      .rightDiv {
        margin-left: 50%;
      }    

}







.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: #000;
    font-size: 24px;
    text-decoration: none;
}
.social-icons a:hover {
    color: #0073e6;
}