body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#welcome h1 {
    font-size: 90px;
    color: #4d4c4a;
    font-weight: 700;
}

#welcome img {
    width: 375px;
    height: 325px;
}

#feature {
    text-align: center;
}

#feature p {
    text-decoration: none;
    text-align: start;
    color: red;
    cursor: pointer;
    font-weight: 500;
}

#feature .hr {
    border: 1px solid red;
    border-top: none;
    border-left: none;
    border-right: none;
    margin-bottom: 30px;
}

#feature .btn {
    width: 185px;
    margin-top: 20px;
    border: 2px solid #c09e54;
    text-decoration: none !important;
}

#feature a {
    text-align: center;
    color: black;
    text-decoration: none !important;
}

#feature a:hover {
    background-color: #c09e54;
    color: white;
}

.dropbtn,
.dropTestBtn {
    width: 185px;
    border: 2px solid #c09e54;
    margin-top: 20px;
    cursor: pointer;
    padding-top: 6px;
    padding-bottom: 6px;
    background-color: white;
    border-radius: 5px;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #c09e54;
    color: white;
}

.dropTestBtn:hover, .dropTestBtn:focus {
    background-color: #c09e54;
    color: white;
}

/* The container <div> - needed to position the dropdown content */
.dropdown,
.testDropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content,
.test-dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    text-align: center;
}

/* Links inside the dropdown */
.dropdown-content a,
.test-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    font-size: 14px;
}

/* Show the dropdown menu */
.show {display:block;}

#bottom-bar {
    margin-top: auto;
    padding-bottom: 25px;
    text-align: center;
}

#bottom-bar .hr {
    border: 1px none #d3d3d2;
    border-bottom-style: solid;
    margin-bottom: 7px;
}

#bottom-bar a {
    text-decoration: none;
    color: #777775;
    cursor: pointer;
}