

   body {
   background-color: rgb(210, 231, 231);
   background-size: relative; 
   
    }

   .container {
      width: 85vmin;
      position:absolute;
      transform: translate(-50%, -50%);
      top: 50%;
      left: 50%;
      overflow: hidden;
      border: 20px solid #ffffff;
      border-radius: 8px;
      box-shadow: 10px 25px 30px rgba(30, 30, 200, 0.3);
   }

    h1 {
      color: blue; 
    }

    p {
      color: black;
    }

nav{
    width: 101%;  
    padding: 0px 0px; 
    position: fixed;
    margin: -15px;
    box-sizing: border-box;
    background-image: linear-gradient(#9689ca, #d36a6a);    
}

nav .logo p{
    font-size: 30px;
    font-weight: bord;
    float: right;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
}
nav ul{
    float: right;
      }   
nav li{  
     line-height: 35px;
    display: inline-block;
    list-style: none;

}
nav li a{
    font-size: 18px;
    text-transform: uppercase;
    padding:0px 15px;
    color: white; 
    text-decoration: none;
}

.header{
    margin-top: 10px;
}


footer{

    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
    background-color: #c9dacf;
    padding-bottom: 4rem;
}

.footer {
    width: 80;
    height: 50vh;
    background-color: rgb(94, 76, 76);
    color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: 0 auto;
}

.footer-heading {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}

.footer-heading h2 {
    margin-bottom: 2rem;
}

.footer-heading a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-heading a:hover {
    color: red;
    transition: o.3s ease-out;
}

.footer-email-form h2 {
    margin-bottom: 2rem;

}

#footer-email {
    width: 250px;
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;

}

#footer-email::placeholder {
    color: #b1b1b1;
}

#footer-email-btn {
    width: 100px;
    height: 40px;
    border-radius: 4px;
    background-color: red;
    outline: none;
    border: none;
    color: #fff;
    font-size: 1rem;
}

#footer-email-btn:hover {
    cursor: pointer;
    background-color: #337AF1;
    transition: all 0.4s ease-out;
}

#footer-login {
    width: 120px;
    height: 50px;
    border-radius: 6px;
    background-color: #337AF1;
    outline: none;
    border: none;
    font-family: 'Courier New', Courier, monospace;
}