* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Mono', monospace;
}

html {
    background-color: black;
    overscroll-behavior: none;
}

body {
    background-image: url("../images/L.jpg");
    background-size: cover;
    color: white;
    min-height: 100vh;
}

.center {
    margin: 0 auto;
    text-align: center;
}

.page-wrapper {
    max-width: 600px;
    margin: auto;
}

.pfp {
    width: 150px;
    height: 150px;
    max-width: 150px;
    border-radius: 50%;
    border: 7px solid white;
    margin-top: 75px;
    box-shadow: 0px 0px 8px 0px white;
    animation: dropDown 2s;
}

.name {
    font-size: 36px;
    text-shadow: black 0px 0px 3px;
    margin-bottom: 4px;
    animation: dropDown 2s;
}

.motto {
    text-shadow: black 0px 0px 3px;
    margin-bottom: 16px;
    animation: dropDown 2s;
}

.link-wrapper {
    animation: slideUp 2s;

}

.link {
    font-size: 16px;
    color: white;
    text-shadow: black 0px 0px 3px;
    text-decoration: none;
    display: inline-block;
}

.link:hover {
    color: red;
    text-shadow: darkred 0px 0px 3px;
    transition: 0.2s ease-in-out;
}

.contact {
    text-shadow: black 0px 0px 3px;
    margin-top: 25px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    animation: slideUp 2s;
}

.logo:hover {
    color: red;
    text-shadow: darkred 0px 0px 2px;
    transition: 0.2s ease-in-out;
    transform: scale(1.1);
}

.logo {
    color: white;
    font-size: 36px;
    margin-top: 0px;
    transition: 0.2s;
}

.copyright {
    text-shadow: black 0px 0px 3px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    animation: fadeIn 2s;
}

@keyframes dropDown {
    0% {
        transform: translate3d(0, -175px, 0);
        opacity: 0;
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        transform: translate3d(0, +175px, 0);
        opacity: 0;
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}