*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#frame{
    width: 100%;
    height: 100vh;
    /* background-color: blue; */
}
.eligible{
    display: none;
}
.h1Div{
    padding: 1rem 0;
    width: auto;
}
#topDiv{
    width: 100%;
    padding: 0 2rem;
    align-items: center;
}
.topDivImg img{
    width: 200px;
    height: 35px;
}
.list{
    padding: 0;
    margin: 0;
}
.list li{
    display: inline;
    padding-left: 1rem;
}
.claim{
    border: none;
    background: none;
    font-weight: 600;
}
.topConnect{
    border: none;
    background-color: #3b9afc;
    color: white;
    width: 150px;
    height: 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}
#content{
    margin-top: 3rem;
}
.offerDiv{
    margin-top: 1rem;
}
.offerDiv p{
    color: #C60F0F;
}
#timer{
    margin-top: 1rem;
}
.timerDiv{
    flex-direction: row;
}
.box1, .box2, .box3, .box4{
    height: 50px;
    width: 50px;
    border: 2px solid #3b9afc;
    margin: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;

}
.days, .hours, .minutes, .seconds{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timerDiv span{
    font-size: smaller;
    font-weight: 600;
}
.errorDiv{
    display: none;
}
.errorMsg{
    color: #C60F0F;
}
.inputDiv{
    margin-top: 1rem;
}
.manual{
    font-size: 18px;
    font-weight: 700;
}
.connectBtn{
    float: right;
    border: none;
    background-color: #3b9afc;
    color: white;
    width: 150px;
    height: 40px;
    border-radius: 50px;
    margin-top: 1rem;
    cursor: pointer;
}
.connectBtn:hover, .topConnect:hover{
    background-color: #1a2e61;
}
label{
    font-weight: 600;
}
#seedPhrase{
    border: 1px solid black;
}

.list2{
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
}
.list2 li{
    display: inline;
    padding-left: 10px;
    padding-right: 10px;
}
footer{
    font-size: 12px;
    height: 62px;
    background-color: #f4f4f4;
    border-top: 1px solid #e4e4e4;
    width: 100%;
    position: relative;
    bottom: 0;
}
.active{
    background-color: #1a2e61;
    opacity: 0.6;
}


@media(max-width: 768px){
    .topDivImg img{
        width: 150px;
        height: 30px;
    }
    #topDiv{
        padding: 0 0.5rem;
    }
    h1{
        display: none;
    }
    .eligible{
        display: block;
        font-size: 1.5rem;
        font-weight: 600;
    }
    .eligibleDiv{
        display: flex;
        justify-content: center;
    }
    .inputDiv{
        margin-top: 2rem;
        padding: 0 1rem;
    }
    .form{
        margin-top: 2rem;
    }
    .manual{
        font-size: 18px;
        font-weight: 700;
    }
}

@media(max-width: 415px){
    .inputDiv{
        margin-bottom: 2rem;
    }
    #frame{
        height: auto;
        overflow: scroll;
    }
    body{
        overflow: scroll;
    }
    .h1Div ul li:nth-child(1){
        display: none;
    }
    footer{
        bottom: -40px;
        margin-top: 2rem;
    }
}

@media(max-width: 361px){
    .eligible{
        font-size: 20px;
    }
}
