/* ==========================================
   Student Voice India - Final Responsive CSS
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#eef3fb;
    font-family:Arial, Helvetica, sans-serif;
    padding:30px 20px;
}

.card{
    max-width:760px;
    margin:30px auto;
    background:#ffffff;
    border-radius:22px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.logo{
    width:280px;
    max-width:100%;
    display:block;
    margin:0 auto 20px;
}

.launch{
    color:#1d56a8;
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

h1{
    font-size:52px;
    line-height:1.15;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
}

.description{
    font-size:22px;
    line-height:1.7;
    color:#333;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background:#183f74;
    color:#ffffff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:10px;
    font-size:26px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#12335d;
}

.contact{
    margin-top:35px;
    font-size:22px;
    line-height:1.8;
    color:#333;
    word-break:break-word;
}

.contact p{
    margin:10px 0;
}

hr{
    margin:35px 0;
    border:none;
    border-top:1px solid #dddddd;
}

.copyright{
    font-size:22px;
    margin-bottom:10px;
}

.footer{
    font-size:20px;
    color:#555;
    line-height:1.6;
}



/* ==========================================
            Tablet (≤992px)
========================================== */

@media (max-width:992px){

body{
    padding:20px;
}

.card{
    padding:32px;
}

.logo{
    width:240px;
}

.launch{
    font-size:22px;
}

h1{
    font-size:42px;
}

.description{
    font-size:20px;
}

.btn{
    font-size:24px;
}

.contact{
    font-size:20px;
}

}



/* ==========================================
            Mobile (≤768px)
========================================== */

@media (max-width:768px){

body{
    padding:15px;
}

.card{
    width:100%;
    margin:20px auto;
    padding:28px 20px;
    border-radius:18px;
}

.logo{
    width:200px;
    margin-bottom:18px;
}

.launch{
    font-size:18px;
    margin-bottom:15px;
}

h1{
    font-size:34px;
    line-height:1.25;
    margin-bottom:18px;
}

.description{
    font-size:18px;
    line-height:1.65;
    margin-bottom:28px;
}

.btn{
    display:block;
    width:100%;
    padding:16px;
    font-size:20px;
}

.contact{
    font-size:18px;
    line-height:1.7;
}

.contact p{
    margin:10px 0;
}

.copyright{
    font-size:18px;
}

.footer{
    font-size:16px;
    line-height:1.5;
}

}



/* ==========================================
         Small Phones (≤480px)
========================================== */

@media (max-width:480px){

body{
    padding:10px;
}

.card{
    padding:22px 16px;
}

.logo{
    width:180px;
}

.launch{
    font-size:17px;
}

h1{
    font-size:30px;
    line-height:1.25;
}

.description{
    font-size:17px;
    line-height:1.6;
}

.btn{
    font-size:19px;
    padding:15px;
}

.contact{
    font-size:16px;
    line-height:1.6;
}

.copyright{
    font-size:16px;
}

.footer{
    font-size:15px;
    line-height:1.5;
}

}
