body {
    padding: 0;
    margin: 0;
    background-color: white;
}

header {
    background-image: url("/images/index/Lif-Banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-bottom: 150px;
}

header img {
    width: 300px; 
    filter: drop-shadow(0px 10px 10px #3d3d3d);
}

.header-title {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: x-large;
    padding-top: 15%;
    padding-bottom: 20%;
    animation-name: headerAnimation;
    animation-duration: 0.5s;
}

.header-title p {
    text-shadow: 0px 0px 20px rgb(0, 0, 0);  
    font-weight: bold;
}
.header-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.header-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 221px;
}

.header-divider .shape-fill {
    fill: #FFFFFF;
}

@keyframes headerAnimation {
    0% {
       opacity: 0;
       transform: translateY(-100px);
    }
    70% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-a {
    display: grid;
    grid-template-columns: auto auto;
    text-align: center;
    margin-bottom: 200px;
    width: 100%;
    opacity: 0;
    transform: translateY(200px) scale(0.81);
    transition: 0.3s ease-out;
}

.section-a.show {
    display: grid;
    grid-template-columns: auto auto;
    text-align: center;
    margin-bottom: 200px;
    width: 100%;;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: 0.3s ease-out;
}

.section-a img {
    width: 90%;
}

.section-a-image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-a-image-container span {
    display: none;
}

.section-a-image-container:hover > span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px;
    border-radius: 0.5em;
    color: black;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: block;
}

.section-a-image-container:hover > img {
    opacity: 0.5;
}

.section-a h1 {
    font-size: 500%;
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;
}

.section-a p {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
}

.section-a a {
    color: rgb(0, 111, 185);
    text-decoration: underline;
    font-family: Arial, Helvetica, sans-serif;
    font-size: large;
}

@media screen and (max-width: 1150px) {
    .section-a {
        display: grid;
        grid-template-columns: auto;
        text-align: center;
        margin-bottom: 200px;
        width: 100%;
    }
    .section-a.show {
        display: grid;
        grid-template-columns: auto;
        text-align: center;
        margin-bottom: 200px;
        width: 100%;
    }
    .section-a img {
        width: 98%;
        text-align: center;
        padding-top: 50px;
    }  
}

@media screen and (max-width: 500px) {
    .header-title {
        padding-top: 20%;
        padding-bottom: 30%;
    }

    .header-divider svg {
        height: 100px;
    }
}