@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/***************
ATOZ TIMER 
***************/

.atoz-timer {
    max-width: 500px;
    width: 100%;
    margin: 5rem auto 0rem;
}

.atoz-timer-title h2 {
  font-family: Raleway;
  font-weight: 700;
  color: #1C1721;
  text-align: center;
  margin-top: 1.5rem;
}

.atoz-timer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.atoz-timer-image {
    margin: 0rem auto 1rem;

}

#output {
    font-family: Montserrat;
    font-weight: 700;
    font-size: 50px;
    color: #20202f;
    text-align: center;
}

/***************
TEXT BOX 
***************/

.atoz-collapse {
    max-width: 500px;
    width: 100%;
    margin: 3rem auto;
}

/* Style the button that is used to open and close the collapsible content */
.atoz-collapsible {
    background-color: #6666ff;
    color: #fff;
    cursor: pointer;
    font-family: Raleway;
    font-weight: 400;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.3rem;
    max-width: 500px;
    width: 100%;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
  
  .active, .atoz-collapsible:hover {
    background-color: #6666ff;
    max-width: 500px;
    width: 100%;

  }
  
  .active {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

  }
  .atoz-content {
    display: none;
    overflow: hidden;
    background-color: rgba(102, 102, 255, .4);
    padding: 2rem;
    font-weight: 400;
    font-family: Raleway;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }

  .atoz-collapsible:after {
    content: '\02795'; 
    font-size: 1.1rem;
    color: white;
    font-weight: 400;
    font-family: Raleway;
    float: right;
  }
  
  .active:after {
    content: "\2796";
    color: #fff;
  }
