* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#part1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border-bottom: 1px solid gainsboro;
}

.part1_div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 15px;
}

.part1_div a {
    text-decoration: none;
    color: black;
    font-size: 90%;
    font-weight: 700;
}
#site{
    color: green;
    font-size: 20px;
}
.part1_div a button {
    text-decoration: none;
    color: black;
    font-size: 90%;
    font-weight: 700;
    background-color: orangered;
    color: white;
    border: none;
    padding: 2px;
    border-radius: 5px;
}

#med {
    width: 73%;
}

#signup {
    width: 20%;
    font-size: 100%;
}

#needhelp {
    width: 10%;
    font-size: 100%;
}

#part2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    border-bottom: 1px solid gainsboro;
}

#part2_div1 {
    display: flex;
    width: 60%;
    align-items: center;
}

#part2_div1>:nth-child(1)>input[type=text] {
    width: 300px;
    height: 30px;
    margin-left: 2px;
    border: none;
}
#part2_div1>:nth-child(1){
    border: 1px solid black;
}
#part2_div1>:nth-child(1) button{
    width: 30px;
    border: none;
}

#part2_div1 form{
    display: flex;
}

#part2_div2 {
    display: flex;
    width: 40%;
    align-items: center;
    justify-content: center;
}

#part2_div2 button {
    height: 30px;
    width: 100px;
    text-decoration: none;
    background-color: orangered;
    color: white;
    border: none;
    padding: 2px;
    border-radius: 5px;
    margin-left: 30px;
}

#part3 {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 5px 5px;
}

.dropbtn {
    background-color: white;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}


.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
}

#drop {
    display: flex;
    width: 550px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    background-color: white;
}

.dropdown-content a {
    color: black;
    padding: 5px 5px;
    text-decoration: none;
    display: block;
    font-size: 13px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

footer {
    border-top: 1px solid gainsboro;
}

.fot1 {
    padding: 10px 30px;
    background-color: #fffcf8;
}

.fot1 h2 {
    margin: 20px 0px;
    font-size: 30px;
    font-weight: 540;
}

.fot1 h3 {
    margin: 10px 0px;
    font-size: 20px;
    font-weight: 500;
}

.fot1 p {
    margin: 10px 0px;
    font-size: 18px;
    color: gray;
}

.fot_2 {
    padding: 10px 0px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.fot_2>h1 {
    font-size: 33px;
    font-weight: 500;
    width: 710px;
    margin: auto;
    margin-bottom: 20px;

}

.stats {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-bottom: 1px solid gainsboro;
}

.stats>div {
    padding: 20px;
}

.stats>div>h1 {
    text-align: center;
    margin: 0px 0px 10px 0px;
}

.stats>div>p {
    text-align: center;
    font-size: 18px;
}

.fot_2>form {
    width: 640px;
    margin: auto;
    margin-top: 20px;
}

.fot_2>form label {
    font-size: 20px;
    margin-right: 20px;
}

.fot_2>form input {
    width: 250px;
    height: 30px;
    margin-right: 20px;
}

.fot_2>form button {
    height: 30px;
    width: 100px;
    background-color: orangered;
    border: none;
    border-radius: 5px;
    color: white;
}

.fot_3 {
    padding: 40px 30px;
    background-color: #fffcf8;
    border-bottom: 1px solid gainsboro;
}

.fot_3 table {
    width: 100%;
}

.fot_3 table th {
    text-align: left;
    padding: 5px 0px;
    font-size: 20px;
    font-weight: 550;
}

.fot_3 table td {
    padding: 3px 0px;
}

footer>p {
    padding: 10px 30px;
    text-align: center;
    background-color: #fffcf8;
}

.popup {
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
    width: 380px;
    padding: 20px 30px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: top 0ms ease-in-out 200ms,
        opacity 200ms ease-in-out 0ms,
        transform 20ms ease-in-out 0ms;
}

.popup.active {
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
    transition: top 0ms ease-in-out 0ms,
        opacity 200ms ease-in-out 0ms,
        transform 20ms ease-in-out 0ms;
}

.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}

.popup .form h2 {
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}

.popup .form .form-element {
    margin: 15px 0px;
}

.popup .form .form-element label {
    font-size: 14px;
    color: #222;
}

.popup .form .form-element input[type=text],
.popup .form .form-element input[type=password] {
    margin-top: 5px;
    display: block;
    padding: 10px;
    width: 100%;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}

.popup .form .form-element button {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}

.popup2 {
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
    width: 380px;
    padding: 20px 30px;
    background: #FFF;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    transition: top 0ms ease-in-out 200ms,
        opacity 200ms ease-in-out 0ms,
        transform 20ms ease-in-out 0ms;
}

.popup2.active {
    top: 50%;
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
    transition: top 0ms ease-in-out 0ms,
        opacity 200ms ease-in-out 0ms,
        transform 20ms ease-in-out 0ms;
}

.popup2 .close-btn2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}

.popup2 .form2 h2 {
    text-align: center;
    color: #222;
    margin: 10px 0px 20px;
    font-size: 25px;
}

.popup2 .form2 .form-element2 {
    margin: 15px 0px;
}

.popup2 .form2 .form-element2 label {
    font-size: 14px;
    color: #222;
}

.popup2 .form2 .form-element2 input[type=text],
.popup2 .form2 .form-element2 input[type=password] {
    margin-top: 5px;
    display: block;
    padding: 10px;
    width: 100%;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}

.popup2 .form2 .form-element2 button {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}