body,
html {
    background-color: #1e1335;
    font-family: sans-serif;
    color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
#hero {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #4a3f81;

    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box; /* OLD - Firefox 19- */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Opera 12.1, Firefox 20+ */
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e1335+3,4a3f81+68,4765bd+100 */
    background: #1e1335; /* Old browsers */
    background: -moz-linear-gradient(
        45deg,
        #1e1335 3%,
        #4a3f81 68%,
        #4765bd 100%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
        45deg,
        #1e1335 3%,
        #4a3f81 68%,
        #4765bd 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        45deg,
        #1e1335 3%,
        #4a3f81 68%,
        #4765bd 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1335', endColorstr='#4765bd',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

#hero .logo {
    margin: 0 auto;
    width: 20%;
    font-size: 3em;
    transition: 1s;
    text-align: center;
}
#hero .logo a {
    text-decoration: none;
    color: rgb(74, 63, 129, 0);
}

#hero .logo:hover a {
    color: rgb(74, 63, 129, 1);
}
#hero .logo .link {
    position: absolute;
}

.cls-1 {
    fill: #4a3f81;
    stroke: #4a3f81;
    stroke-miterlimit: 10;
    stroke-width: 10px;

    transition: 1s;
}

#hero .logo:hover {
    width: 30%;
}
#hero .logo:hover .cls-1 {
    stroke: #1e1335;
    fill: #1e1335;
}
#hero .lanylurk {
    position: absolute;
    bottom: -10%;
    height: 30%;
    right: 2%;
    animation-name: lanylurk;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

@keyframes lanylurk {
    0% {
        bottom: -10%;
    }
    28% {
        bottom: -4%;
    }
    29% {
        bottom: -4%;
    }
    40% {
        bottom: -10%;
    }
}

#section {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 30%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
#section > a{

}
#section > a:hover img {
    width: 150px;
}
#section img {
    transition: 0.5s;
    width: 100px;
    position: relative;
}

@media only screen and (max-width: 768px) {
    #hero .logo {
        width: 50%;
    }
    #hero .logo:hover {
        width: 70%;
    }


}

