@charset "UTF-8";
/* CSS Document */

body, ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}

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

.main-content > p {
    font-weight: bold;
    font-size: 1.5rem;
}

.main-content > h1, .main-content > p {
    color: white;
}


.intro-content__text > p {
    color: white;
}

.logo_image {
    object-fit: cover;
}

.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: black;
    top: 0;
    position: sticky;
    z-index: 1000;
}

.navigation > li > a {
    font-weight: bold;
    padding: 1rem;
    display: block;
}

.navigation > li > img {
    font-weight: bold;
    padding: 1.5rem;
    display: block;
    width: 100%;
    height: 30px;
}

.intro-content {
    width: 100%;
    height: calc(40vh - 30px);
    background-image: url(img/gradient1.png);
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-content__text {
    font-size: 3rem;
    color: navy;
}

.main-content {
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.grid {
    display: grid;
    row-gap: 100px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    place-items: center;
    margin-bottom: 50px;
    position: relative;
}

.image-container {
    position: relative;
}

.grid > .image-container > img {
    border-radius: 5%;
    filter: brightness(1);
    transition: 2s;
    width: 100%;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.grid > .image-container > img:hover {
    filter: brightness(0.5);
}

.footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #252525;
    width: 100%;
    height: 20vh;
}

.footer > h1 {
    color: white;
    margin-top: 0;
    margin-bottom: 50px;
}

.footer > ul {
    display: flex;
}

.footer > ul > li {
    color: white;
    margin-right: 50px;
}

.footer__contact {
    color: white;
    font-size: 1.5rem;
}

.footer__contact > a {
    color: inherit;
    font-size: 1.5rem;
}