.getstarted {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 100;
}

.getstarted .logo {
    width: 100px;
    border-radius: 10px;
    /* margin: 0 0 60px 0; */
    display: inline-block;
    animation: tilt-shaking 0.7s infinite;
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0eg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.getstarted .name {
    font-size: 26px;
    /* font-weight: bold; */
    margin: 10px 0;
}

.getstarted .footer {
    width: 100%;
    position: absolute;
    bottom: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
}

.getstarted .footer span {
    font-size: 18px;
    font-weight: normal;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.getstarted .footer span div:nth-child(1) {
    color: dimgray;
}

.getstarted .footer span div:nth-child(2) {}

.getstarted .footer img {
    width: 40px;
    margin: 0;
}