body {
    background-color: #1a1d26;
}

header {
    font-size: 25px;
    height: 150px;
    background-color: #92b4a7;
    border-bottom-style: solid;
    border-width: 4px;
    font-family: 'Courier New', 'Courier', 'monospace';
}

header span {
    font-size: 23px;
    font-family: 'Courier New', 'Courier', 'monospace';
}

.title {
    padding-top: 40px;
    margin-left: 20px;
}

header nav {
    margin-right: 1%;
    text-align: right;
}

header nav a {
    text-decoration: none;
    color: black;
    margin: 10px;
}

header nav a:hover {
    background-color: #3e8e41;
    box-shadow: 0px 0px 5px 5px #3e8e41;
}

.box {
    border-style: solid;
    border-color: black;
    border-width: 1px;
    background-color: #92b4a7;
    box-shadow: 0px 0px 5px 1px grey;
    width: 500px;
    height: 80px;
}

.user-container {
    border-style: solid;
    border-width: 1px;
    display: block;
    margin: auto;
    margin-top: 5px;
    width: 98%;
    height: 350px;
    background-color: rgb(25, 41, 31);
    box-shadow: 0px 0px 10px 1px black;
}

.rockets {
    position: absolute;
    top: 25%;
    left: 10%;
}

.trees {
    position: absolute;
    top: 25%;
    right: 10%;
}

#text-trees {
    margin: 10px;
    font-family: 'Courier New';
    font-size: 16px;
}

#pick-rocket {
    font-size: 16px;
    font-family: 'Courier New';
}

.rocket-title, .trees-title {
    border-bottom-style: solid;
    padding: 3px;
    background-color: #92b4a7;
}
  
.dropdown {
    position: relative;
    display: inline-block;
}
  
.drop-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.drop-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
  
.drop-content a:hover {
    background-color: #ddd;
}
  
.dropdown:hover .drop-content {
    display: block;
}
  
.dropdown:hover .box {
    background-color: #3e8e41;
}

.content {
    text-align: center;
}

.unity-section {
    display: flex;
    margin-top: 5px;
    margin-bottom: 10px;
    justify-content: center;
    
}

* {
    padding: 0;
    margin: 0;
}

a {
    font-family: 'Droid serif', 'serif'; 
    font-size: 16px; 
    font-weight: 100; 
    font-style: italic; 
    line-height: 24px; 
   
}