
body{
    overflow: hidden;
}

.wiggle{
    margin-left: 10px;
    animation: wiggle;
    animation-duration: 500ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-direction: alternate;
}

@keyframes wiggle {
    0%{margin-left: 10px;}
    50%{margin-left: 20px;}
    100%{margin-left: 10px;}
}

.image-ico{
    border-radius: 10px;
}

.full-screen{
    width: 100vw;
    height: 100vh;
    padding: 3rem;
}

.full-screen-content{
    overflow: auto;
    height: 75vh;
}

.scroll-body{
    width: 100vw;
    height: 100vh;
    overflow: auto;
    overflow-x: hidden;
}

.button-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    width: 20%;
    border-radius: 25px;
    box-shadow: 0 0 15px gray;
    padding: 30px;
}

.square-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 0 4px gray;
    margin: 10px;
    padding: 5px;
    text-align: center;
    align-items: center;
    font-size: 9pt;
    width: 40%;
    aspect-ratio: 1;
}

.square-button .image-ico {
    width: 64px;
    height: 64px;
}