html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to right, red, black);
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

#container {
    width: 60%;
    max-width: 1000px;
    min-width: 600px;
    height: auto;
    padding: 20px;
    border: 3px double black;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.14);
    position: relative;
    flex-direction: column;
    align-items: center;
}

#title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

#title h1 {
    color: ghostwhite;
    font-family: 'courier new';
}

.skull {
    width: 60px;
    height: auto;
}

#alien {
    float: right;
    margin: 10px auto;
    padding: 10px;
}

#moonwidget {
    width: 180px;
    height: 180px;
    border: none;
    background-color: black;
    position: absolute;
    top: 140px;
    right: 14px;
}

#nav ul {
    float: left;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#nav a {
    color: ghostwhite;
    font-size: x-large;
}

#topbuttonlinks {
    position: absolute;
    top: 350px;
}

#bottombuttonlinks {
    position: absolute;
    top: 400px;
}

#buttoncode a {
    color: ghostwhite;
    text-decoration: none;
    position: absolute;
    top: 381px;
    left: 20px;
}

#topbuttongifs {
    position: absolute;
    top: 260px;
    left: 2.1%;
    right: 72%;

}

#bottombuttongifs {
    position: absolute;
    top: 300px;
    left: 2.1%;
    right: 72%;
}

#microblog {
    position: absolute;
    top: 370px;
    padding: 10px;
    background-color: black;
    font-family: monospace, monospace;
    color: green;
    text-align: left;
}

#microblog a {
    color: ghostwhite;
    text-decoration: none;
}


#about table {
    font-family: Verdana;
    text-align: center;
    word-wrap: break-word;
    color: ghostwhite;
    border: 3px solid black;
    margin-top: 10px;
}

#about th {
  border-collapse: collapse;
  padding: 5px;
}

#about td {
  border-collapse: collapse;
  padding: 5px;
}

#about h3 {
    color: ghostwhite;
}

#about a {
    color: ghostwhite;
    font-size: larger;
}

#updates a {
    color: ghostwhite;
    font-size: larger;
}

#guestbook a {
    color: ghostwhite;
    font-size: larger;
}

#guestbook iframe {
    border: solid;
    border-color: black;
}

