.boxes-Guide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

}

.text-box-guide {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: aliceblue;
    width: 250px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-family: 'Roboto-Bold', sans-serif;
    font-size: 1.5rem;
    margin-top: 5vh;
    color: blue;
}

.text-box-guide:active {
    background-color: #4C8BF5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.icon-guide {
    position: absolute;
    left:-3%;
    top: 90%;
    transform: translateY(-50%);
}

