body {
    background-color: #4f3b63;

    font-family: Octarine;
    color: rgb(255, 161, 232);

    overflow-y: hidden;
    overflow-x: hidden;
}

.Text {
    font-size: 35px;

    display: flex;
    justify-content: center;
    align-content: center;
    height: 100%;

    margin-top: 12vw;
}

.Skooge {
    width: 200px;
}

.Link {
    text-decoration: none;

    color: rgb(255, 161, 232);
    font-weight: bold;
}

a:hover {
    color: rgb(255, 255, 255);
    transition: color 0.3s ease-in-out;
}

@media only screen and (max-width: 550px) {
    .Text {
        font-size: 25px;
        margin-top: 60vw;
    }
}