html {
  scroll-behavior: smooth;
}
body{
margin: 0;
font-size: 1.7rem;
letter-spacing: -.015em;
text-align: left;
font-family: 'Helvetica Neue',Helvetica,'Segoe UI',Arial,sans-serif;
}
a{
	text-decoration: none;
	color: black;
}
ul li{
	list-style-type: none;
}
#base{
	display: flex;
	flex-direction: column;
}
#header{
	display: inline-flex;
	font-weight: 700;
	background-color: #e9dec1;
	justify-content: space-around;
	padding: 2rem 8rem 0 8rem;
}
#content{
	background-color: #F5EFE0;
	padding-left: 8rem;
	padding-right: 8rem;
	padding-top: 4rem;
	padding-bottom: 4rem;
}
#footer{
	display: flex;
	justify-content: space-between;
	padding: 0 8rem 0 8rem;
}
.td1{
	vertical-align: middle;  overflow: hidden; overflow-wrap: break-word; border: solid #000000 0.5pt;
}
.td-p{
	text-align: center; margin-top: 0pt; margin-bottom: 0pt;line-height: 1.2;
}
.tsk_button{
	background-color: #CD2653;
	font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 1.1em 1.44em;
}
.tsk_button__link{
	color: white;
    text-decoration: none;
}
#tabble{
	border: none; border-collapse: collapse;width: 100%;
}
.tasks{
	display: grid;
	grid-template-columns: auto auto auto auto;
}
#title{
	text-align: center;font-size: 4.8rem;font-weight: 800;
}
#choices {
	display: flex;
	list-style: none;
	justify-content: space-around;
}
#choices a{
	color: #CD2653;
	font-weight: 600;
}
#choicesm {
	display: flex;
	flex-direction: column;
	list-style: none;
	justify-content: space-around;
}
#choicesm a{
	color: white;
	font-weight: 600;
}
#choicesm li{
	margin: 10px 0;
}
.pic{
	height: 15px; width: 21px;
}
#myBtn{
	border: none;
	background-color: transparent;
}
#menu{
	display: none;
}
#menu-but{
	background-color: transparent;
	border: none;
	font-weight: 600;
	font-size: 15pt;
}
#menu-block{
	position: fixed;
	top: 0;
	height: 100%;
	width: 30%;
	overflow-y: hidden;
	z-index: 1;
    background-color: #CD2653;
    overflow-x: hidden;
    transition: all 0.5s ease-in-out;
    /*border-right: 5px solid black;
    padding-right: 5%;*/
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropbtn {
  border: none;
  font-size: 1.7rem;
  outline: none;
  color: white;
  padding: 0px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropbtn:hover {
  background-color: rgba(75,75,75,0.3);
  border-radius: 5px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 768px) {
#content{padding-left: 1rem;padding-right: 1rem;}
#tabble{font-size: 15pt;}
#tsk_button{padding: 0.5em 0.44em;}
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
#menu-block{padding-right: 5%;}
#tabble{font-size: 9pt;}
#footer{padding: 0 1rem 0 1rem;}
.tsk_button{font-size: 0.8em;padding: 0.5em 0.44em;}
#title{font-size: 2.4rem}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {...}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
#tabble{font-size: 17pt;}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1200px) {
#choicesm {display: none;}
#menu-block{display: none;}
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (max-width: 1200px) {
#choices {display: none;}
#menu {display: block;}
}

@media (orientation: landscape){
}

@media (orientation: portrait){
}

.inputform{
  padding: 5vw;
  padding-left: 10vw;
  font-size: 3vh;
  font-weight: 600;
}

.inputform span{
  font-size: 2vh;
}


.inputform input[type=text] {
  border-radius: 4px;
  width: 100%;
  padding: 16px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 1px solid #555;
  outline: none;
}

.inputform input[type=text]:focus {
  background-color: #e9dec1;
  border: 0px solid #555;
}

.inputform select {
  border-radius: 4px;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border: 1px solid #555;
}

.inputform select:focus {
  border: 0px solid #555;
  border-radius: 4px;
  background-color: #e9dec1;
}

.inputform input[type=button], input[type=submit], input[type=reset] {
  background-color: white; /* Green */
  border: 1px solid black;
  color: black;
  border-radius: 2px;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.inputform input[type=submit]:hover {
  background-color: #e9dec1;
  border: 1px solid #e9dec1;
  color: white;
}

.inputform a{
  color: blue;
  text-decoration: underline;
}
