@font-face {
    font-family: "Dancing Script";
    src: url("DancingScript-VariableFont_wght.ttf") format("truetype");
    font-display: swap;
}
@font-face {
    font-family: "Forum";
    src: url("Forum-Regular.ttf") format("truetype");
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 1rem;
    overflow-x: hidden;
}

body {
    background-color: rgba(25, 25, 25, 0.93);
}

.img-gallery {
    margin-top: 2rem;
}

.img-gallery > div {
    columns: 3;
    gap: 1.25rem;
    padding-top: 1.25rem;
}

.img-gallery img {
    display: block;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 1.25rem;
}

.img-animation-right {
    animation-name: moveInRight;
    animation-duration: 2s;
    animation-delay: 50ms;
    animation-timing-function: ease-out;
}
.img-animation-middle {
    animation-name: moveInBottom;
    animation-duration: 2s;
    animation-delay: 50ms;
    animation-timing-function: ease-out;
}
.img-animation-left {
    animation-name: moveInLeft;
    animation-duration: 2s;
    animation-delay: 50ms;
    animation-timing-function: ease-out;
}

.main-tittle {
    color: white;
    text-align: center;
    padding: 0;
    font-size: 5rem;
    font-weight: 400;
    margin: 0;

    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

.logo-box {
    margin: 0;
    display: flex;
    justify-content: center;
}

.logo {
    width: 13rem;

    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: auto;
    vertical-align: top;
}

@media (max-width: 768px) {
    *{
        animation: none;
    }
    body{
        padding: 0;
    }

    .img-gallery > div{
        columns: 2;
    }

    img {
        width: 100%;
    }

    .main-tittle {
        color: white;
        text-align: center;
        padding: 0;
        font-size: 4rem;
        font-weight: 400;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .img-gallery > div{
        columns: 1;
    }

    img {
        width: 100%;
    }

    .main-tittle {
        color: white;
        text-align: center;
        padding: 0;
        font-size: 3rem;
        font-weight: 400;
        margin: 0;
    }
}

@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes moveInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}






