* {
  margin: 0;
  padding: 0;
}

.main-container {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.main-container .leftside {
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.main-container .main {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-container .main .main-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #2c3350;
  padding: 10px;
  margin-top: 20px;
}

h1 {
  color: white;
  text-decoration: underline;
  text-align: center;
}

#container {
  color: #d7dfe4;
}

#time{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-end;
}

.digit {
  font-size: 150px;
  font-weight: bold;
}

.txt {
  font-size: 40px;
  font-weight: bold;
}

#btn-container {
  text-align: center;
  margin-top: 40px;
}

.btn {
  padding: 7px 25px;
  font-size: 15px;
  margin: 0 10px;
  color: white;
  cursor: pointer;
}

#start {
  background-color: #1abc9c;
}

#stop {
  background-color: #3498db;
}

#reset {
  background-color: #e74c3c;
}

.main-container .main .banner {
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main-container .main .atag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: max-content;
}

.main-container .rightside {
  width: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 800px) {
  .main-container {
    flex-direction: column;
  }

  .main-container .main {
    width: 100%;
  }

  .main-container .leftside {
    width: 100%;
    position: fixed;
    left: -1000px;
    /* margin-left: -1000px; */
  }

  .main-container .rightside {
    width: 100%;
    position: fixed;
    right: -1000px;
    /* margin-right: -1000px; */
  }

  .digit {
    font-size: 40px;
    font-weight: bold;
  }
  
  .txt {
    font-size: 20px;
    font-weight: bold;
  }
}
