body {
    background: linear-gradient(
        rgb(25, 25, 25),
        rgb(15, 15, 15)
    )fixed;
}

.wrapper {
    margin-left: 50px;
    margin-right: 50px;
}

.text {
    color: white;
    font-family: consolas;
}

.center {
    text-align: center;
}

.head {
    white-space: nowrap;
    transition: 500ms;
    font-size: 100px;
    margin: auto;
    width: fit-content;
}

:hover.head {
    transition: 500ms;
    letter-spacing: 20px;
    text-shadow: 5px 5px purple;
}

.subhead {
    width: fit-content;
    margin: auto;
    transition: 500ms;
    font-size: 15px;
}

:hover.subhead {
    transition: 500ms;
    word-spacing: 5px;
}

.title {
    width: fit-content;
    margin: auto;
    transition: 500ms;
    font-size: 25px;
}

:hover.title {
    transition: 500ms;
    word-spacing: 5px;
    text-shadow: 2px 2px purple;
}

.paragraph {
    width: fit-content;
    margin: auto;
    transition: 500ms;
    line-height: 20px;
}

:hover.paragraph {
    transition: 500ms;
    line-height: 25px;
}

.links {
    transition: 500ms;
    font-size: 30px;
}

:hover.links {
    transition: 500ms;
    letter-spacing: 5px;
    text-shadow: 2px 2px purple;
    width: fit-content;
    margin: auto;
}