@import url("https://fonts.googleapis.com/css?family=Asap:400,500,700");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    background-color: rgb(255,255,255);
    font-family: "Poppins", "Roboto", sans-serif;
    font-weight: 300;
}



/*   Header section    */
header {
    height: 80px;
    background-color: #000000;
}

.logo img {
    width: 25px;
    height: auto;
    transition: transform 0.8s ease-out;
}

.logo img:hover {
transform: rotate(360deg);
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    position: relative;
    color: rgb(255, 255, 255);
    z-index: 10;
    padding: 26px;
}

nav a:hover {
    color: #2d2d46;
    background-color: #f8f8f8;
    font-weight: 300;
}

/*    Score-Board     */

.score-board {
    margin: 20px auto;
    border: 3px dotted #eeeeee;
    border-radius: 10px;
    text-align: center;
    width: 400px;
    color: rgb(0, 0, 0);
    font-size: 46px;
    padding: 15px 20px;
    position: relative;
}

.badge {
    color: black;
    background: #ece598;
    font-size: 18px;
    font-weight: normal;
    padding: 2px 10px;
}

#user-label {
    position: absolute;
    top: 30px;
    left: -25px;
    border-radius: 50px;
}

#comp-label {
    position: absolute;
    top: 30px;
    right: -30px;
    border-radius: 50px;
}

.result {
    font-size: 40px;
    color: black;
}

.result > p {
    text-align: center;
    font-weight: bold;
    margin-top: 40px;
}

.choices {
    display: flex;
    justify-content: space-evenly;
    margin: 100px 0px;
    padding: 40px;
    background-color: #000000;
    background-image: url("img/zzz.png");
    background-attachment: fixed;
    background-size: contain;
}

.choice {
    margin: 80px 20px;
    border: 4px solid white;
    display: flex;
    border-radius: 50%;
    padding: 50px;
}

.choice img {
    width: auto;
    height: 100px;
}

.choice:hover {
    cursor: pointer;
    background: white;
    transition: all 1s ease;
}

#action-message {
    text-align: center;
    color: #110707;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 7px;
}

#copy-right {
    color: #5f5f5f;
    font-weight: lighter;
    text-align: center;
    font-size: 10px;
}

.footer {
    color: black;
    text-align: center;
    margin: 10px;
    background: #ffffff;
    padding: 30px;
}

.green-glow {
    border: 30px solid #4dcc7d;
    box-shadow: 0 0 10px #31b43a;
}

.red-glow {
    border: 30px solid #fc121b;
    box-shadow: 0 0 10px #d01115;
}

.gray-glow {
    border: 30px solid #464647;
    box-shadow: 0 0 10px #25292b;
}

/*    Test Delete later   */

#press {
     width: 15%;
     margin: auto;
     background-color: #455C72;
     color: white;
     font-size: 14px;
     font-weight: 400;     padding: 10px;
     margin-bottom: 10px;
     border-radius: 20px;
     text-align: center;
     display: flex;
     justify-content: center;
    }

.clinic {
    margin-bottom: 74px;
}

.green {
    width: 15%;
    margin: auto;
    color: white;
    font-size: 14px;
    font-weight: 400;
    background-color: black;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font: black;
    background-color: rgb(129, 168, 90);
}
.red {
    width: 15%;
    margin: auto;
    color: white;
    font-size: 14px;
    font-weight: 400;
    background-color: black;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font: black;
    background-color: rgb(218, 53, 53);
}

.patientList {
    height: 200px;
    background: rgb(69, 91, 114);
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
    align-items: center;
}

.patientList li {
    width: 20%;
    text-align: start;
    display: flex;
    justify-content: start;
    
}

.trial {
    min-height: 50vh;
    background-color: #2b5e8a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


section {
    background-color: #455C72;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

form {
    width: 30%;
    min-height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
 h1 {
    margin: 2rem;
    font-size: large;
    color: #455D72;
    text-align: center;
}

form input,
form button {
    padding: 5px;
    background-color: white;
    border:none;
    transition: all 0.3s ease;
}
form button:hover {
    background-color: #FFA502;
}
form input {
background-color: #ffffff;
color: #000000;
}
form button {
    background-color: #7ba6cc ;
    padding: 5px;
}

select {
    appearance: none;
    -webkit-apperance:  none;
    -moz-apperance: none;
    overflow: hidden;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    padding: 3px;
}

.select {
    margin-left: 4rem;
    color: aquamarine;
    background-color: white;
    padding: 5px;
    position: relative;
    width: 50%;
    padding: 3px;
}

.select::after {

    content: "\25BC";
    color: #7BA6CD;
    position: absolute;
    top: 10;
    right: 0;
    pointer-events: none;
}


/*After button clicked*/
.todo-container {
    width: 50%;
    margin: auto;
}

.todo-result {
    margin: auto;
    width: 274px;
    height: 30vh;
  
}

.newDiv {
    background: rgb(255, 255, 255);
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}

.newList-style {
flex: 1;
padding: 5px;

}

.btn1-style {
    background-color: #7ba6cc;
    padding: 5px;

}

.btn2-style {
    background-color: #8cb1d1;
    padding: 5px;
}

i {
pointer-events: none;
}

.checked {
    opacity: 0.4;
    text-decoration: line-through;
}


/*    Test Delete later   */


/*    Footer   */

footer {
    height: 100px;
    /*background-color: rgb(90, 89, 89);*/
    background-color: #091E21;
}

footer span {
    color: white;
    font-size: 13px;
    margin-left: 10px;
}
footer a {
    text-decoration: none;
}

footer span:hover {
    color: rgb(170, 170, 170);
}
footer img {
    width: 16px;
}

    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */
    /* To make site responsive for mobiles  - To make site responsive for mobiles */


@media screen and (max-width: 800px) {
    
    nav a {
        padding: 17px;
        font-size: 13px;
    }

    .score-board {
        margin: 20px auto;
        border: 3px dotted #eeeeee;
        border-radius: 10px;
        text-align: center;
        width: 300px;
        color: rgb(0, 0, 0);
        font-size: 46px;
        padding: 15px 20px;
        position: relative;
    }

    .badge {
        color: black;
        background: #ece598;
        font-size: 16px;
        font-weight: normal;
        padding: 2px 10px;
    }

    #user-label {
        position: absolute;
        top: 30px;
        left: -25px;
        border-radius: 50px;
    }

    #comp-label {
        position: absolute;
        top: 30px;
        right: -30px;
        border-radius: 50px;
    }

    .result {
        font-size: 20px;
        color: black;
    }

    .result > p {
        width: 60%;
        margin: auto;
        text-align: center;
        font-weight: bold;
        margin-top: 40px;
        font-size: 15px;
    }

    .choices {
        display: flex;
        justify-content: space-evenly;
        margin: 50px 0px;
        padding: 4;
        background-color: #000000;
        background-image: url("img/zzz.png");
        background-attachment: fixed;
        background-size: cover;
    }

    .choice {
        margin: 50px 15px;
        border: 4px solid white;
        display: flex;
        border-radius: 50%;
        padding: 5px;
    }

    .choice img {
        width: auto;
        height: 50px;
    }

    .choice:hover {
        cursor: pointer;
        background: white;
        transition: all 1s ease;
    }

    #action-message {
        text-align: center;
        color: #110707;
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 7px;
        width: 80%;
        margin: auto;
    }

    #copy-right {
        color: #5f5f5f;
        font-weight: lighter;
        text-align: center;
        font-size: 10px;
    }

    .footer {
        color: black;
        text-align: center;
        margin: 10px;
        background: #ffffff;
        padding: 30px;
    }

    .green-glow {
        border: 20px solid #4dcc7d;
        box-shadow: 0 0 10px #31b43a;
    }

    .red-glow {
        border: 20px solid #fc121b;
        box-shadow: 0 0 10px #d01115;
    }

    .gray-glow {
        border: 20px solid #464647;
        box-shadow: 0 0 10px #25292b;
    }

    /*    My footer section   */

    footer {
        height: 100px;
        margin-top: 0px;
        display: flex;
        background-image: linear-gradient(
            black,
            rgb(39, 39, 39)
        );
    }

    .contact {
        height: 60%;
        margin: auto;
        width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: flex-start;
        margin-left: 30px;
    }
    .contact1 {
        width: 300px;
        display: flex;
        height: auto;
    }

    .contact2 {
        width: 300px;
        display: flex;
        height: auto;
    }

    .contact3 {
        width: 300px;
        display: flex;
        height: auto;
    }

    .contact p {
        color: white;
        font-size: 13px;
    }
    .contact a {
        text-decoration: none;
    }
    .contact p:hover {
        color: rgb(170, 170, 170);
    }
    .contact img {
        width: 15px;
        height: auto;
        margin-right: 20px;
    }
}
