html, body {
    margin: 0; /* Remove default margins from the body and html */
    padding: 0; /* Remove default padding */
    height: 100%; /* Ensure full height */
  }

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust as needed */
}
  
.centered-container iframe {
    max-width: 100%;
    max-height: 100%;
}
  
#home-lb {
    background-color: brown;
    padding: 5px;
}

#contact {
    justify-content: center;
}

.row {
    margin: 0;
    display: inline;
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    }

#email {
    padding-top: 20px;
}

#sendButton {
    display: flex;
    margin-left: auto;
}

