@import url('https://fonts.googleapis.com/css2?family=Poppins: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=Oswald:wght@200..700&display=swap');


* {
   font-family: "Poppins", serif;
   margin: 0;
   padding: 0;
}

header img {
   min-width: 12%;
   max-width: 15%;
}

.navbar {
   padding: 20px 30px;
   display: flex;
   flex-shrink: 0;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   color: #000000;
   background-color: #cdf8c8;
}

li {
   display: inline-flex;
   justify-content: space-between;
   text-align: center;
   margin: 0px 10px;
}

.full-header{
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   align-items: center;
   background-color: #cdf8c8;
   padding: 2% 10% 3% 10%;
}

.full-header img {
   width: 30%;
   padding-left: 10%;
}

.header {
   padding-right: 20%;
   background-color: #cdf8c8;
}

h4 {
   font-weight: normal;
   font-size: 95%;
}

.body-design{
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   gap: 20px;
}

.form-input{
   display: flex;
   flex-direction: column;
   height: 85vh;
   width: 40vw;
   justify-content: center;
   background-color: #f3f3f3;
   padding: 0px 30px;
   border-radius: 15px;
   margin: 6% 1%;
}

form {
   display: flex;
   flex-direction: column;
   align-content: center;
   gap: 2px;
   margin-top: 0%;  
   font-size: 95%;
   padding-top: 3%;
}

label {
   margin-bottom: 10px;
}

input {
   font-size: 97%;
   border-width: 1px;
   border-style: solid;
   border-radius: 15px;
   height: 35px;
   border-color: #000000;
   background-color: rgb(231, 231, 231); 
   padding-left: 3%; 
   cursor: pointer;
}

#download {
   background-color: #cdf8c8;
   padding-top: 2%;
   padding-bottom: 2%;
   border-radius: 15px;
   margin: 0;
   color: #000000;
   font-weight: bold;
}

.popup-page {
   display: flex;
   flex-direction: row;
   justify-content: space-between;
   padding: 0% 10%;
   align-items: center;
   text-align: center;
   font-size: 0.91rem;
   height: 50vh;
   background-color: #cdf8c8;
}

#bottom-text{
   font-family: "Poppins", serif;
   text-wrap: 100px;
   text-align: left;
   font-size: 25px;
   font-weight: bold;
   padding-left: 10%;
}

.loader {
   border: 18px solid #000000; /* Light grey */
   border-top: 18px solid #3498db; /* Blue */
   border-radius: 50%;
   width: 80px;
   height: 80px;
   animation: spin 2s linear infinite;
}

@keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}

#loader-section{
   padding-right: 24%;
}

footer {
   background-color: #cdf8c8;
   text-align: center;
   font-size: 80%;
   padding-bottom: 2%;
}