@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
    padding: 0;
    background-color: #26000D;
    font-family: "Outfit", sans-serif;

}
.body2 {
    padding: 0;
    background-color: #ffffff;
    font-family: "Outfit", sans-serif;

}
a{
    transition: all 300ms ease-in;
}
.logo {
    width: 220px;
}

nav {
    position: relative;
    z-index: 2;
    padding: 15px 0px;
}

.banner {
    position: absolute;
    background-image: url('/image/bannertext.svg');
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.image {
    position: relative;
    width: 100%;
    height: calc(100% - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image img {
    max-width: 75%;
    z-index: 2;
    position: relative;
    animation: beexi 5s ease-in-out infinite;
    transform-origin: center bottom;
}
@keyframes beexi {
    0%{
        transform: rotate(5deg);
    }
   50%{
        transform: rotate(-5deg);
    }
 
    100%{
        transform: rotate(5deg);
    }
}



footer {
    z-index: 3;
    position: absolute;
    bottom:30px;
    width: 100%;
}

footer .flex {
    align-items: center;
}

footer .flex img {
    margin-right: 10px;
    height: 70px;
    border-radius: 5px;

}

footer .flex h2 {
    color: #fff;
    margin-block: 0;
}

footer .flex a{
    color: #ffb079;
    font-weight: 400;
}


footer .flex a:hover {
    color: #fff;
}

.text {
    text-align: right;
    color: #ffffff7e;
}

.social a{
    background-color: rgba(255, 255, 255, 0.103);
    color: #fff;
    display:inline-block;
    height:40px;
    width: 40px;
    color: #fff;
    border-radius: 5px;line-height: 39px; text-align: center;
}
.social a:hover{ background-color: #ffb079; color: #26000D;}



@media only screen and (max-width: 600px) {
    .banner {
        position: absolute;
        background-image: url('/image/banner2.svg');
        background-position: center center;

    }

    .image {

align-items:start;
    }
    .logo {
        width: 120px;
    }
    footer .flex {
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .text {
        text-align:center;
        color: #ffffff7e;
    }
    
}
