/* image 1 */

body {
    margin: 0;
}

html {
    min-height: 100%;
    background-image: url(image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'Noto Sans', sans-serif;
    font-weight: bold;
 }

li {
    list-style-type: none;
}

.logo {
    color: black;
    width: 350px;
    height: 143px;
    background-color: #DDDAD6;
    position: absolute;
    bottom: 70%;
    left: 8%;
    display: inline-block;
    font-size: 2.9em;
    text-align: center;
    margin: 5px 0;
    padding: 5px 0;
}

.logotext {
    margin-top: 10%;
}

.slogan {
    font-size: 0.3em;

}

.logoalign {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.getstarted {
    transform: translate(67%, 260%);
}

.submit {
    width: 100px;
    height: 34px;
    border-style: solid;
    background-color: #CC5B3F;
    border: none;
    color: white;
}


.cancel {
    color: black;
    background-color: transparent; 
    border: none;
    font-weight: bold;
}

.signin {
    width: 255px;
    height: 87px;
    border-style: solid;
    background-color: #CC5B3F;
    border: none;
    font-size: 2.25em;
    color: white;
}

.signup {
    width: 255px;
    height: 87px;
    color: white;
    font: bold;
    background-color: transparent;
    border: transparent;
    border-style: solid;
    font-size: 1em;
}



@media only screen 
    and (device-width: 414px) 
    and (device-height: 896px) 
    and (-webkit-device-pixel-ratio: 3) { 
        html {
            background-image: url(image.jpg);
            }
        .getstarted{
            transform: translate(-30%, -50%);
        }
        .logo{
            transform: translate(-50%, 30%);
        }
    }

    .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
      }

      input[type="text"], textarea {

        background-color : #ECEAE6; 
      
      }

      input[type="password"], textarea {

        background-color : #ECEAE6; 
      
      }

      .welcome {
          font-size: 1.5em;
      }
    
      

      .modal-yesorno {
          display: flex;
          justify-content: space-between;
      }
      
      /* Modal Content/Box */
      .modal-content {
        font-family: 'Noto Sans', sans-serif;
        font-weight: bold;
        position: absolute;
        padding: 24px 36px;
        background-color: #DDDAD6;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
      }
      
      /* The Close Button */
      .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
      }
      
      .close:hover,
      .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
      }