body{
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: rgba(168,209,248,1);
    text-align: center;
    background-image: url(luckystar.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.mainbit {
    background-color: rgba(42,115,246,0.95);
    border: 2px solid lightgreen;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: large;
}

.sillybio {
    padding-bottom: 14px;
    padding-left: 30px;
    padding-right: 30px;
}

.socials {
    border-top: 2px solid lightblue;
    padding: 10px;
    word-spacing: 160px;
}

a {
    color: lime;
}

.blinkies {
    display: flex;
    justify-content: center;
}

.blinkies1 {
    margin-right: auto;
}

.blinkies2 {
    margin-left: auto;
}

.teto {
    animation: tetoshake 2s infinite ease-out;
}

@keyframes tetoshake {
    0%  {
        transform: skew(-2deg) translateX(3px);
    }
    50%  {
        transform: skew(2deg) translateX(-3px);
    }
    100%  {
        transform: skew(-2deg) translateX(3px);
    }
}