* {
    box-sizing: border-box;
}


html, body {
  margin:0px;
  height:100vh;
}

.row {
    display: flex;
    
  }
  
.columnl {
    flex: 40%;
    height: 100vh;
  }

.columnr {
    flex: 60%;
    height: 100vh;
  }


.ackbox {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding:3%;
  width: 100%;
  position: relative;
  top: 10%;
}

.subbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding:1%;
  width: 100%;
  position: relative;
  top: 10%;
}

input.larger {
  transform: scale(4);
  margin: 30px;
}
input.large {
  transform: scale(2);
  font-family: sans-serif;
  margin: 30px;
}

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #80BD9E;
}

ul.topnav li {float: left;}

ul.topnav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 20px 25px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: #89DA59;}

ul.topnav li a.active {background-color: #F98866;}

@media screen and (max-width: 600px) {
  ul.topnav li {float: none;}
}

.mddlbox {
  text-align: center;
  padding:3%;
  width: 100%;
  position: relative;
  top: 5%;
}

.youtubemid {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding:1%;
  width: 100%;
  position: relative;
  top: 20%;
}

.hometext {
  font-family: fantasy; 
  position: relative;
  font-size: large;
  width: 90%;
  left: 7%;
  top: 1%;
  color:tomato; 
}


#footerl{
    color:rgb(0, 0, 0); 
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 40%; 
    text-align: center; 
    background-color: #FFFFFF;
    opacity: .7;
    padding: 3px;
}

#footerr{
  color:rgb(0, 0, 0); 
  position: fixed; 
  bottom: 0; 
  right: 0; 
  width: 60%; 
  text-align: center; 
  background-color: #FFFFFF;
  opacity: .7;
  padding: 3px;
}


progress {
  position: relative;
  margin-top: 20%;
  margin-left: 25%;
  position: relative;
  transform: rotate(-90deg);
  width:20em;
  height:15em;
}

.box {
  /* percentage to degree
    --s:0 for [0% 50%]
    --s:1 for [50% 100%]
   */
  --v:calc( ((18/5) * var(--p) - 90)*1deg);
  display: flex;
  height: 22vw;
  width: 22vw;
  top: 20%;
  padding: 2%;
  position:relative;
  left: 22%;
  border-radius:50%;
  background:
    linear-gradient(var(--v), tomato 50%,transparent 0) 0 /calc((1 - var(--s))*100%),
    linear-gradient(var(--v), transparent 50%,#E8E8E8        0) 0 /calc(var(--s)*100%),
    linear-gradient(to right, tomato 50%,#E8E8E8 0);
}
