﻿.wrapper {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
    scroll-behavior: smooth;
}

.wrapper:focus {
    outline:none;
}

.top-menu-header {
    position:sticky;
}

.menu-placeholder {
    height: 0px;
}

body {
    overflow-x: hidden;
    overflow-y: hidden;
}

.banner {
    margin: -1rem;
    margin-bottom: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85%;
    transform-style: preserve-3d;
    z-index: -1;
}


.mob-banner {
    height: 50%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("./newimages/mobile_800.png");
}

.background, .middle, .foreground {
    position:absolute;
    width:100%;
    height: 100%;
    z-index: -1;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background {
    background-image: url("./newimages/353_back.png");
    transform: translateZ(-20px) scale(3);
}

.middle {
    background-image: url("./newimages/353_middle.png");
    transform: translateZ(-10px) scale(2);
}


.foreground {
    background-image: url("./newimages/353_front.png");
    transform: translateZ(-5px) scale(1.5);
}

.container-wrapper {
    background: white;
}

.banner-text {
    margin-left: var(--mob-side-margin);
    margin-right: var(--mob-side-margin);
    align-self: center;
    padding: 2rem 2.5rem;
    background: rgba(54,57,69, 0.5);
}

.banner-text > p {
    font-weight: 600;
    font-size: 2rem;
    padding: 0;
    color: white;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
    max-width: 30ch;
    text-align: center;
    text-transform: uppercase;
}

.about {
    display: grid;
    align-content: center;
    justify-items: center;
    margin: 0 1rem;
    margin-top: 2rem;
}

.ifmga-logo {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    height: 150px;
    width: 150px;
}

.expand-more {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
    position: relative;
}

.expand-more p {
    position: absolute;
    font-family: 'Material Icons';
    font-size: 4rem;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: var(--clr-inkwell);
    outline: none;
    box-shadow: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.expand-more p:hover {
    animation: shake 0.5s ease-out;
    cursor: pointer;
}

@keyframes shake {
    0% {
        transform: translateY(5%);
    }

    25% {
        transform: translateY(-5%)
    }

    50% {
        transform: translateY(5%);
    }

    75% {
        transform: translateY(-5%)
    }

    100% {
        transform: translateY(5%)
    }
}
@media only screen and (max-width: 40em) {
    .mob-banner {
        display: grid;
    }
}

@media only screen and (min-width: 40em) {
    .banner-text {
        margin-left: 8rem;
        margin-right: 8rem;
        align-self: center;
        padding: 1.5em 2.5rem;
        background: rgba(54,57,69, 0.5);
    }

    .about {
        margin: 0 1rem;
        margin-top: 4rem;
    }

    .about h1 {
        font-size: 3rem;
    }

    .about p {
        text-align: center;
    }

    .banner-text > p {
        font-weight: 600;
        font-size: clamp(2rem, 5vw, 5rem);
        padding: 0;
        color: white;
        margin: 0;
        line-height: 1;
        letter-spacing: 2px;
        max-width: 30ch;
        text-align: center;
        text-transform: uppercase;
    }
}


    