li {
    list-style: none;
}

ul {
    padding:0;

}

.nav-container {
    background:rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position:fixed;
    width: 100%;
}

body {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    background: url("icescene.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 300vh;
    background-size: cover;
    line-height: 1.5;

}


input[type="email"],
input[type="password"]  {
    border: 1px solid white;
    border-radius: 5px;
    padding: 0.5rem 0.7rem;
    transition: border-color 1.15s, box-shadow 1.15s;
    width: 73vw;

}

input[type="email"]:focus,
input[type="password"]:focus  {

    border-color: dodgerblue;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(30, 143, 255, 0.253);
    appearance: none;


}

button[type="submit"],
button[type="reset"] {
    background: dodgerblue;
    color: white;
    border: 0;
    padding: 0.5rem 0.7rem;
    border-radius: 5px;
    outline: 0;
}

#login-form {
    display:flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px

}

#slogan {
    color: white;
    font-size: 5vw;
    padding-top: 75px;
    padding-bottom: .5vh;
}

#slogan-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group {
    margin-bottom: 1rem;
    align-self: center;
}

.sign-in {
    margin-left: auto;
    text-decoration: none;
    transition: 0.7s ease;
    padding-right: 20px;
}

.title-bar {
    color: white;
    font-size: large;
    font-style: oblique;
    font-weight: 700;
    padding-left: 10px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding-right: 10px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; 
    margin-left: auto;
    margin: 0;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: 0.7s ease;
}

.nav-link:hover {
    color: dodgerblue;
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
}



.bar {
    display:block;
    width: 25px;
    height: 3px;
    margin: 5px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
    border-radius: 15px;
}

@media(max-width:768px) {
    .hamburger{
        display:block;
    }

    .title-bar {
        padding-left: 0px;
    }

    @keyframes barOne {
        0% {
            transform: translateY(8px) rotate(45deg);
        }}

    @keyframes barTwo {
        0% {
            transform: translateY(-8px) rotate(-45deg);
        }}
    

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        animation-name: barOne;
        animation-duration: 0s;
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        animation-name: barTwo;
        animation-duration: 0s;
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position:fixed;
        left: -100%;
        top: 50px;
        gap: 0;
        flex-direction: column;
        background-color:rgba(0, 0, 0, 0.5);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        z-index: 999;  
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-menu.active {
        left: 0;
        background-color: rgba(0, 0, 0, 0.726);
    }

    .nav-container.active {
        background: rgba(0, 0, 0, 0.726);
    }

    .sign-in {
        padding-right: 10px;
    }
}


@keyframes pop {
    from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
}

.box {
    background: rgba(255, 255, 255, 0.85);
    height: 20px;
    width: 20px;
    margin: 10px;
    border-radius: 25%;
    animation-name: pop;
    animation-duration: 30s;
    animation-iteration-count: infinite;
}

.myvideo {
    position: fixed;
    right: 0;
    top: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    z-index: -1;    
    object-fit: cover;
    background-color: black;
  }
  
  .content {
    position: fixed;
    text-align: center;
    font-size: 3vh;
    top: 33vh;
    color: #f1f1f1;
    width: 100%;
    padding: 1vem;
  }

  .covercontent {
    text-align: left;
    font-size: medium;
    color: rgb(49, 49, 49);
    margin-left: 8vw;
    margin-right: 8vw;
    margin-top: 1vh;
    padding-right: 2vh;
    padding-left: 2vh;
    background-color: rgba(255, 255, 255, 0.85);

    border-radius: 5px;
  }

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 80vw;
    text-align: left;
    outline: none;
    transition: 0.4s;
    align-self: center;
    z-index: 1;
    border:none;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */


  .agreed {
    background-color: green;
    border-color: greenyellow;
    color: white;

  }
  
  .activeacc, .accordion:hover {
    background-color: dodgerblue;
    color: white;
  }

  /* Style the accordion panel. Note: hidden by default */
  .panel {
    background-color: white;
    width: 80vw;
    display: none;
    overflow: hidden;
    border-radius: 5px;
    transition: 0.4s;
    top: -30px;
    position: relative;
  }

  .panel-tx {
    z-index: -10;
  }

  #disclosures {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  }

  .disclosure_content {
    display: flex;
    color: black;
    align-items: center;
    justify-content: center;
    align-self: center;
  }

  .chk {
    color:#444
  }

