/* Reset some default styles */
html, body, ul {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Header styles */
header {
    background-color: #f5f5f5;
    padding: 20px;
}

nav ul {
    list-style: none;
    display: flex;
}

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

nav ul li a {
    text-decoration: none;
    color: #333;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Main section styles */
section {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header {
    background-color: #f5f5f5;
}

.logo {
    margin-top: 20px;
}

.body {
    background-color: #000;
}

.company-welcome {
    margin-bottom: 10px;
}

.company-welcome h1 {
    font-size: 40px;
}

.company-welcome h2 {
    font-size: 30px;
}

.company-welcome h3 {
    font-size: 20px;
}


.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}


.company-name {
    min-height: 20vh; /* Changed height to min-height */
    background-color: #ab0000; /* Changed color code to lowercase */
    display: flex; /* Added display property */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.company-name h1 {
    font-size: 40px;
    color: #fff;
}


/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.vh-90 {
    min-height: 90vh; /* Ensure container is at least the viewport height */
}

.vh-100 {
    min-height: 100vh; /* Ensure container is at least the viewport height */
}















