
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,800&display=swap');

body{
    background-color: hsl(0, 0%, 86%);
    width:  1440px;
}

.container{
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: white;
    border-radius: 18px 18px 90px 18px;
}

.input-section{
    display: flex;
    padding-left: 20px;
}
.input{
    width: 25%;
    padding: 20px;
    font-weight: bold;
    color: #817979;
}

input {
    width: 60%;
    padding: 10px 4px;
    font-size: 22px;
    border-width: 1px;
    border-color: #b0b0b0;
    background-color: #FFFFFF;
    color: #000000;
    border-style: solid;
    border-radius: 6px;
    box-shadow: 0px 0px 3px rgba(66,66,66,.50);
    text-shadow: 0px 0px 0px rgba(66,66,66,.75);
}

input:focus {
    outline:none;
    border-color: hsl(259, 100%, 65%);
    border-width: 2px;
}

.writing-section{
    font-family:'Poppins', sans-serif;
    font-weight: bold;
    color: black;
}

.ot{
    font-size: 3rem;
    margin: 10px;
}


span{
    color: hsl(259, 100%, 65%);
    padding-left: 2px;
}

.btn{
    
        background-color: hsl(259, 100%, 65%);
        border-radius: 100%;
        height: 60px;
        width: 64px;
        position: relative;
        top: 125px;
        right: 10px;
        border: none;
    }


.btn:hover{
    background-color: #000000;
}

.attribution{  
    color: #817979;
    
    position: absolute; 
    left: 0; 
    right: 0;
    bottom: 5px; 
    margin-left: auto; 
    margin-right: auto; 
    width: 30%;
}

hr{
    width: 90%;
}


.warning{
    display: hidden;
    color: hsl(0, 100%, 67%);
    margin: 6px;
}

a {
    text-decoration: none;
    color:  hsl(259, 100%, 65%);
}

a:hover {
    color:  black ;
  }





/* for mobile */




@media only screen and (max-width: 600px) {

 
    .container{
        width: 70%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: white;
        border-radius: 12px 12px 50px 12px;
        padding: 10px;
        
    }
    
.input-section{
    padding-top: 30px;
    padding-bottom: 30px;    
      
}

.input{
    width: 50%;  
    padding: 6px;
    font-size: 12px;
}


input {
    width: 70%;
    padding: 6px 2px;
    font-size: 16px;
    border-width: 1px;
  
    color: #000000;
    border-style: solid;
    border-radius: 4px;
}



.writing-section{
    font-family:'Poppins', sans-serif;
    font-weight: bold;
    color: black;
    padding-top: 20px;
    padding-bottom: 20px;
}


.ot{
    font-size: 2rem;
    margin: 5px;
}


.btn{
    
       
        border-radius: 100%;
        height: 50px;
        width: 54px;
        position: absolute;
        top: 152px;
        right: 0;
        left: 0;
        margin-left: auto;
        margin-right: auto;
        border: none;
    }




.attribution{  
    color: #817979;
    font-size: 12px;
    
    position: absolute; 
    left: 0; 
    right: 0;
    bottom: 3px; 
    margin-left: auto; 
    margin-right: auto; 
    width: 40%;
}

hr{
    width: 90%;   
    
}


.warning{
    display: hidden;
    color: hsl(0, 100%, 67%);
    margin: 4px;
    font-size: 8px;
}

  }