input:hover,
input:active,
input:focus,
textarea:hover,
textarea:active,
textarea:focus,
button:hover,
button:active,
button:focus {
    outline: none;
}

body {
    background-color: rgb(20, 20, 20);
    justify-content: center;
    align-items: center;
}

button {
    border: 0;
    border-radius: 0;
    background-color: transparent;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    outline: none;
    appearance: none;
    text-align: left;
}

.PDF {
    position: fixed;
    height: 100%;
    width: 40%;
}

.movie { 
    position: fixed;
    bottom: 300px;
    right: 100px;
    width: 400px;
    height: 800px;
}

.Lego {
    height: 400px;
    object-fit: cover;
    object-position: 0% 25%;
}

.profilePic {
    position: relative;
    display: inline-block;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    box-shadow: 0px 0px 25px 25px rgba(0,0,0,0);
    border-radius: 200px;
    transition: all 0.5s ease-in-out;
}

.profilePic img {
    height: 100%;
    width: 100%;
    border-radius: 200px;
    object-fit: cover;
    object-position: 0% 25%;
}

.profilePic::after {
    content: '';
    border-radius: 200px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 25px 25px rgba(0,0,0,1);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.profilePic:hover {
    transform: scale(1.1, 1.1);
}

.profilePic:hover::after {
    opacity: 1;
}

.interact {
    color: black;
    background-color: rgb(215, 215, 215);
}

.header {
    text-align: center;
    padding: 20px;
}

.logo {
    width: 300px;
    padding: 100px;
    box-shadow: 0px 0px 25px 25px rgba(0,0,0,0);
    transition: all 0.5s ease-in-out;
}
    

/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
}
  
/* Style the links inside the navigation bar */
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
/* Change the color of links on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}
  
/* Add a color to the active/current link */
.navbar a.active {
    background-color: #04AA6D;
    color: white;
}

.main-text {
    color: rgb(200, 200, 200);
}

.box {
    background-color: rgb(76, 76, 76);
    width: 200px;
}

.container {
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.documentContainer {
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: left;
}
.whiteBanner {
    background-color: white;
    margin: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#welcome {
    font-size: 2rem;
}

#fader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
    background: rgb(20, 20, 20);
    animation-duration: 300ms;
    animation-timing-function: ease-in-out;
}

@keyframes fade-out {
    from { opacity: 1 }
    to { opacity: 0 }
}

@keyframes fade-in {
    from { opacity: 0 }
    to { opacity: 1 }
}

#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}

#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}

#follower {
    position: absolute;
    pointer-events: none;
    transition: transform 0.1s ease;
    transform-origin: top center;
}

#ship {
    position: absolute;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transition: transform 0.1s;
}

#enemy {
    height: 20px;
    width: 20px;
    background-color: brown;
    position: absolute;
    pointer-events: none;
    top: 25%;
    left:25%;
    transition: transform 0.1s;
}

#gameCanvas {
    position: center;
    background-color: black;
}