@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins' sans-serif;
}
.content{
    max-width: 1250px;
    margin: auto;
    padding: 0 30px;
}
.navbar{
    position: fixed;
    z-index: 5;
    width: 100%;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: rgb(225, 225, 225);
    box-shadow: 0px 10px 10px rgb(225, 225, 225);
    color: white;
}
.navbar .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .menu-list{
    display: inline-flex;
}
.menu-list li{
    list-style: none;
}
.navbar .logo a{
    color: rgb(0, 0, 0);
    font-size: 35px;
    font-weight: 600;
    text-decoration: none;
}
.navbar .logo a span{
    color: #f02cbf;
}
.menu-list li a{
    color: black;
    font-size: 25px;
    font-weight: 500;
    margin-left: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 20px 20px #e1e1e4;
}
.menu-list li a:hover{
    color: #f02cbf;
    text-decoration: underline;
}
.menu-list li a.active{
    color: #f02cbf;
    text-decoration: underline;
}
.about{
    padding: 7em 0;
    background: #f5f5f7;
    color: rgb(0, 0, 0);
    height: 100%;
    min-height: 100vh;
}
.about .title{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.about .title span{
    color: #f02cbf;
}
.error {
    color: red;
    font-weight: bold;
  }
/* batch link opener */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
textarea {
  display: block;
  width: 100%;
  height: 200px;
  padding: 10px;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}
button {
    padding: 10px 30px;
    background-color: #3e7e84;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 0px;
    border-radius: 20px;
    transition: 0.2s;
}
button:hover {
    background-color: #f02cbf;
	color: white;
}
.about p{
    font-size: 25px;
    padding-top: 20px;
    text-align: justify;
}
.icon{
    color: black;
    font-size: 20px;
    cursor: pointer;
    display: none;
    margin-top: 10px;
    padding: 0 10px;
}
.icon.cancel-btn{
    position: absolute;
    right: 32px;
    top: 25px;
}

footer{
    border: 1px solid #aaaab0;
    max-width: 100%;
    margin: auto;
    padding: 10px 5px;
    padding-bottom: 5px;
    font-size: 19px;
    text-align: center;
    background: #f5f5f7;
}
footer span{
    color: #f02cbf;
}
footer p{
    font-size: 15px;
}
footer p a{
    text-decoration: none;
    color: #000000;
}
.waste{
    background: #f5f5f7;
}
@media (max-width: 1000px){
    body.disabledScroll{
        overflow: hidden;
    }
    .icon{
        display: block;
    }
    .icon.hide{
        display: none;
    }
    .navbar .menu-list{
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        background: rgb(225, 225, 225);
        display: block;
        padding: 40px 0;
        text-align: center;
        transition: all 0.3s ease;
    }
    .navbar .menu-list.active{
        left: 0;
    }
    .navbar .menu-list li{
        margin-top: 50px;
    }
    .navbar .menu-list li a{
        font-size: 25px;
    }
    .contect-left{
        flex-basis: 100%;
        margin-top: 20px;
        background: white;
        padding: 40px 60px;
    }
    .contect-right{
        flex-basis: 100%;
        margin-top: 20px;
        padding: 40px;
        background: #f02cbf;
        color: white;
    }
    .contact-box{
        display: inline;
    }
    .input-row{
        display: inline;
    }
    .contect-right tr td{
        display: inline;
    }
}
@media (max-width: 400px){
    .navbar .logo a{
        color: rgb(0, 0, 0);
        font-size: 30px;
        font-weight: 500;
        text-decoration: none;
    }
    .about .content{
        margin-top: 30%;
    }
    .about .title{
        font-size: 30px;
        font-weight: 500;
        text-align: center;
    }
    .welcome{
        margin-top: 40px;
        font-size: 25px;
        color: #f02cbf;
        text-align: center;
    }
    .about p{
        font-size: 15px;
        padding-top: 20px;
        text-align: justify;
    }
    #output {
        width: 100%;
        text-align: center;
        height: 200px;
        font-family: monospace;
        font-size: 20px;
        padding: 10px;
        border-radius: 5px;
    }
    footer{
        border: 1px solid #aaaab0;
        width: 100%;
        margin: auto;
        padding: 10px 5px;
        padding-bottom: 5px;
        font-size: 13px;
        text-align: center;
    }

}