*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

p {
    font-weight: 300;
    font-size: 14px;
    line-height: 1.3rem;
    text-align: left;
}

body {
    width: 100%;
    height: 100%;
    background-color: rgb(3, 5, 5);
    background-image: url("./stars.gif");
    padding: 2%;
}

h1 {
    font-family: "Workbench";
}

.planet-card {
    cursor: pointer;
    margin-left: 1%;
    margin-right: 1%;
    text-align: left;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.day-card {
    cursor: pointer;
    border-style:groove;
    border-color: rgb(220, 215, 224);
    border-bottom: none;
    margin-left: 1%;
    margin-right: 1%;
    text-align: left;
    padding-left: 1%;
    padding-right: 1%;
    padding-top: 5px;
    padding-bottom: 5px;
}

.day-card :hover {
    background-color: rgb(18, 25, 56);
}

.day-card-last {
    border-style:groove;
    border-color: rgb(220, 215, 224);
}

.planet-card-body {
    display: flex;
}

.planet-card-body p {
    text-indent: 30px;
}

.day-card-body p {
    text-indent: 30px;
}

h2 {
    text-align: center;
    padding: 3%;
}

h4 {
    font-size: 20px;
}

#title {
    border: 2px outset;
    width: 100%;
    height: 10%;
    text-align: center;
    background-color: rgb(44, 50, 65);
}

#body {
    width: 100%;
    height: 90%;
    display:flex;
}

#border {
    width: 20%;
    height: auto;
}
#header-outline {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header {
    width: 95%;
    text-align: center;
    height: auto;
    padding: 1%;
    background-color: rgb(44, 50, 65);
}
#center-body {
    padding-left: 1%;
    padding-right: 1%;
}
a {
    text-decoration:none;
    margin-right: 1%;
    color: inherit;
}

a:hover {
    color:rgb(253, 241, 75)
}

#center {
    border-style: inset;
    padding-bottom: 2%;
    width: 80%;
    height: 100%;
    background-color: rgb(13, 19, 33);
    color: rgb(214, 232, 248);
}

#page-buttons {
    display: flex;
}

#page-button {
    padding-left: 1%;
    text-align: center;
    display: block;
}
