:root {
    --color1: #3a0556;
    --color2: #fd5100;
    --color3: #fb0000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cont {
    display: flex;
    flex-wrap: wrap;
    height: 45%;
    width: 100%;
    justify-content:center;
    padding: 15px;
   overflow-y:scroll;
    border-top: 6px solid var(--color1);
    border-left: 6px solid var(--color2);
    border-right: 6px solid var(--color3);
    position: absolute;
    bottom: 0;
    animation: slidingDOWN ease 0.8s;
    border-top-left-radius: 55px;
    border-top-right-radius: 55px;
}

.box-logo {
    height: 300px;
    width: 100%;
    background-image: url('./gillis_logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -300px;
    animation: slidingUP ease 2s;
}

.menus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: blue;
    margin: 10px;
    height: 85px;
    width: 85px;
    padding: 0px;
    text-align: center;
    font-weight: bold;
    font-family: arial;
    font-size: 10px;
    border-radius: 50%;
    border: 2px ridge rgb(29, 190, 37);
    text-shadow: 2px 2px 8px rgba(150, 150, 197, 0.596);
    color: azure;
}

.size-icon {
    font-size: 22px;
}

.menus p {
    margin-top: 5px;
}

.links {
    color: rgb(29, 190, 37);
}


@keyframes slidingUP {
    0% {
            height: 50px;
            margin-top: -1000px;
        }
        
    100% {
        height: 300px;
        margin-top: -300px;
    }
}

@keyframes slidingDOWN {
    0% {
        height: 0%;
        
    }
    100% {
        height: 45%;
        
    }
}

