* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
    width: 100%;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
body {
    background-color: #111729;
    height: 100%;
    width: 100%;

}

/*Search page*/

#search-page{
    height: 100%;
    width: 100%;
    display: grid;
    align-content: center;

}
#logo-search-page{
    margin: auto;
    padding: 20px;
}
.input-url-button-div {
    display: flex;
    justify-content: center;
    margin: auto;
    border: solid;
    border-color:#3662E3 ;
    border-radius: 15px;
    border-width: 2px;
    padding: 5px;
    background-color: #030617 ;
    
}
#input-url{
    background-color:transparent ;
    color: #F2F5F9;
    border: none;
    width: 480px;
    padding: 10px;
    font-size: 16px;
}
@media only screen and (max-width: 639px) {
    #input-url{
        background-color:transparent ;
        color: #F2F5F9;
        border: none;
        width: 230px;
        padding: 10px;
        font-size: 16px;
    }
}
::placeholder {
    color: #364153;
    opacity: 1; 
}
#input-url:focus {
    outline:none;
    z-index: 0;
   
}
button{
    background-color:  #3662E3;
    color: #F2F5F9;
    width: 120px;
    height: 50px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    z-index: 1;
    cursor:pointer;
}

.background-image {
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(20%, -16rem); 
    width: 100px; 
    height: auto;
    z-index: -1; 
}

/*QR CODE PAGE*/

#download-page{
    display: none;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}
#logo-download-page{
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    cursor:pointer;
}
#qrcode-circle-background{

    width:350px;
    height:350px;
    border-radius:50%;
    background:#4e80ee33;
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: -1;
    display: none;
}
#qrcode-square-background{

    width:290px;
    height:290px;
    border-radius:40px;
    background:#F2F5F9;
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: -1;
    display: none;
}
#qrcode{
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}
#dual-button{
    display: flex;
    padding-top: 400px;
}
#download-button{
    width: 180px;
}
#share-button{
    margin-left: 30px;
    width: 160px;
}