body,
html {
    margin: 0;
    background-color: transparent;
    background-image: url("../img/background.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@-webkit-keyframes slidetounlock {
    0% {
        background-position: -100px 0;
    }
    10% {
        background-position: -100px 0;
    }
    50% {
        background-position: 100px 0;
    }
    to {
        background-position: 100px 0;
    }
}
@keyframes slidetounlock {
    0% {
        background-position: -100px 0;
    }
    10% {
        background-position: -100px 0;
    }
    50% {
        background-position: 100px 0;
    }
    to {
        background-position: 100px 0;
    }
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.box {
    display: block;
    max-width: 500px;
}

.display-image {
    background-color: #ffffff;
    border-radius: 50%;
    width: 210px;
    height: 120px;
    margin: 10px auto 30px;
    display: flex;
    padding: 10px;
}

.display-image img {
    width: 80%;
    margin: auto;
    z-index: 9999;
}

.flex-both-center {
    align-items: center;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.text-center {
    text-align: center;
}

.page-social {
    background-color: #eaeaea;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 10px;
    padding: 3px;
    height: 30px;
    width: 30px;
}

.page-social:hover {
    transform: scale(1.1);
    transition: all 0.1s ease-in-out;
}

.page-social img {
    height: 30px;
    width: 30px;
}

.link-each-image {
    height: 43px;
    left: 9px;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 43px;
}

.item-title {
    width: 55%;
    word-break: break-word;
}

.social-icon-anchor {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.page-title {
    font-family: 'Balsamiq Sans', cursive;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    line-height: 26px;
    color: #000000;
    margin: 18px 0;
}

.page-item-wrap {
    position: relative;
    margin: 16px auto;
    transition: transform 0.35s cubic-bezier(0.17, 0.67, 0.29, 2.71) 0s;
    width: 400px;
    border: 0 solid transparent;
    background: #eaeaea ;
    border-radius: 30px;
}

.page-item-wrap:hover {
    transform: translate3d(0px, 0px, 0px) scale(1.015);
}

.page-item-each {
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    color: #000000;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    border-radius: 30px;
    min-height: 60px;
    padding: 10px;
}

@media (max-width: 767px) {
    .container {
        display: block;
        justify-content: center;
        min-height: 100vh;
        width: 100%;
    }

    .box {
        max-width: 90%;
        margin: auto;
    }

    .page-social {
        margin: 10px 2px;
    }

    .page-item-wrap {
        position: relative;
        margin: 12px auto;
        width: 100%;
    }
}
