@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');


:root {
    --white: #fff;
    --black: #1c2b2d;
    --blue: #5a8285a9;
    --color-primary: #000000;
    --color-sec: #000000;
    --color-grey: #eee;
    --color-dark-grey: #222831;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--blue);
    height: 100vh;
}

/* UTILITY */
.p-small {
    padding-bottom: 5px;
}
.p-medium {
    padding-bottom: 10px;
}
.p-y {
    padding: 10px 0;
}
.m-y {
    margin: 10px 0;
}

p {
    font-size: 1.6rem;
    line-height: 1.5;
}

img {
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    color: #fff;
    padding-bottom: 3rem;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
}

header h1 span {
    font-weight: 700;
}

header p {
    font-size: 1.4rem;
}

section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

form {
    padding-bottom: 1rem;
}

form input,
form button {
    outline: none;
    border: none;
    border-radius: 3px;
    padding: .8rem;
    font-size: 1.2rem;
    font-family: inherit;
    
}
form input {
    width: 30rem;
    padding: .8rem;
    margin-right: 3px;
    border-bottom: 3px solid var(--color-primary);
}

form button {
    background-color:transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}

form button:hover {
    background-color: var(--color-sec);
}

footer p {
    font-size: 1.4rem;
    color: #fff;
    padding-top: 10rem;
}

footer a {
    color: var(--color-sec);
    text-decoration: none;
}

.modal {
    display: none;
    position: fixed; 
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.733);
  }
  
  .modal-content {
    background-color: #eee;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #777;
    border-radius: 3px;
    width: 30rem;
    position: relative;
    text-align: center;
  }
  
  .close {
      position: absolute;
      top: .5rem;
      right: 1rem;
      color: var(--color-primary);
      font-size: 2rem;
      
  }
  
  .close:hover,
  .close:focus {
    color: red;
    cursor: pointer;
  }

  .progress {
      width: 50%;
      height: 4px;
      background-color: #db000093;
  }

  .progress::-webkit-progress-value {
      background-color: #db0000;
    transition: width 1s ease;
}

