footer i {
    font-size: 100px;
}

.text {
    font-family: 'arial ';
    font-size: 50px;
    text-align: center;
    padding: 0;
    margin: 0;
    margin-left: 50%;
    transform: translateX(-200%);
    opacity: 0;
    animation: slide-in-anim 1.5s ease-out forwards;
}

@keyframes slide-in-anim {
    20% {
        opacity: 0;
    }

    60% {
        transform: translateX(-45%);
    }

    75% {
        transform: translateX(-52%);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%);
    }
}

.container {
    display: flex;
    justify-content: center;
    padding: 9px;
    padding-bottom: 40px;
}


.image-card {
    box-shadow: 0px 20px 50px #D9DBDF;
    max-width: 400px;
}

.image-card:hover {
    transform: translate(5px, -5px);
    transition: all 0.3s ease;
}

/* .square:hover {
    -webkit-transform: translate(20px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
    -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


.square {
    width: 860px;
    height: 430px;
    background: white;
    border-radius: 4px;
    box-shadow: 0px 20px 50px #D9DBDF;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.mask {
    clip: rect(0px, 860px, 220px, 0px);
    border-radius: 4px;
    position: absolute;
} */

.h1 {
    margin: auto;
    text-align: left;
    margin-top: 240px;
    padding-left: 30px;
    font-family: 'Merriweather', serif;
    font-size: 34px;
}

.image-card>.border>p {
    text-align: justify;
    padding-left: 30px;
    padding-right: 30px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: #000000;
    line-height: 18px;
    font-weight: 400;
} 

h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}

.item-wrapper {
    width: 50%;
    margin: 0 auto;

    .item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 20px;

        .title {
            font-family: 'Playfair Display', serif;
            flex-grow: 1;
            font-size: 18px;
        }

        .space {
            flex-basis: 1;
            overflow: hidden;
            flex: 20;
            flex-shrink: 4;
            align-self: felx-end;
            text-align: right;
            margin-right: 10px;
            margin-top: 16px;
            border-bottom: 1px dotted black;
            font-size: 0px;
        }

        .price {
            p {
                margin-bottom: 2.5px;
            }

            font-size: 18px;
            font-family: 'Playfair Display',
            serif;
            min-width: 60px;
            align-self: flex-end;
            display:flex;
            flex-direction: column;
        }
    }

    .description {
        font-family: 'Josefin Sans', sans-serif;
        font-weight: 300;
        font-size: 16px;
        width: 80%;
    }
}

i.size {
    font-size: 25px;
}

a {
    position: relative;
    color: #000;
    text-decoration: none;
}

.vonal:hover {
    color: #000;
    border-bottom: 2px black;
    transition: all ease-in-out .2s;
}
.vonal:hover:before{
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 0;
border-bottom: solid 2px #000;
animation: border_anim 0.3s linear forwards;
}

@keyframes border_anim {
0%{
    width: 0%;
}
100%{
    width: 100%;
}
}