* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: darkgray;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 40px;
    height: 40px;
}

.title-container {
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.header {
    background-color: black;
    color: white;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
}

.nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 20px
}

.divider {
    font-size: 35px
}

.vision {
    display: flex;
    flex-direction: column;
    justify-content: 'space-between';
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.vision:hover {
    transform: scale(1.01)
}

.vision-img {
    width: 100vw;
    margin: 0;
    padding: 0;
    height: 89vh;
    object-fit: cover;
}

.vision-title {
    font-size: 35px;
    color: black
}

.vision-text {
    padding: 10px 20px 0px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 250px;
    position: absolute;
    bottom: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0),
            /* 50% transparent black */
            rgba(0, 0, 0, 0.8)
            /* Fully transparent black */
        );
    color: white;
    transition: transform 0.3s ease;
}

.vision-text:hover {
    transform: scale(1.01);
    background: white;
    color: black
}

.vision-desc {
    font-size: 30px;
    font-style: italic;
    display: flex;
}


.dev {
    display: flex;
    flex-direction: column;
    justify-content: 'space-between';
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
}

.dev:hover {
    transform: scale(1.01)
}

.dev-img {
    width: 100vw;
    margin: 0;
    padding: 0;
    height: 89vh;
    object-fit: cover;
}

.dev-title {
    font-size: 35px;
    color: black
}

.dev-text {
    padding: 10px 20px 0px 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 250px;
    position: absolute;
    bottom: 0px;
    background: white;
    color: black;
    transition: transform 0.3s ease;
}

.dev-text:hover {
    transform: scale(1.01);
}

.dev-desc {
    font-size: 30px;
    font-style: italic;
    display: flex;
}

.email-img {
    filter: brightness(0) saturate(100%) invert(100%) contrast(100%);
    width: 30px
}

.contact-us {
    background-color: black;
    padding: 20px;
    width: 100vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    bottom: 0;
}

.email {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px
}