/* Credits : @curioushiva */
/* Universal Values */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Prata", serif;
    background-color: black;
}


/* Heading for the webpage */
h2 {
    margin-top: 80px;
    font-size: 25px;
    margin-bottom: 30px;
    text-align: center;
    color: #778da9;
    font-family: "Playwrite ES";
}

/* BMI Main Box */
.MainBox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;

}

/* BMi Cal Box */
.MainBox .calBox {
    background: linear-gradient(#778da9, white);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;
    padding: 4rem 2rem 0rem 2rem;
}


/* Cal Box Elements */
.calBox input {
    color: rgb(0, 0, 0);
    background-color: rgba(255, 255, 255, 0.921);
    padding: 10px 40px 10px 40px;
    font-size: 17px;
    text-align: center;
    border: none;
    border-radius: 10px;
    letter-spacing: 2px;
    font-family: "Bebas Neue", serif;
}


.calBox button {
    font-size: 18px;
    padding: 10px 15px 10px 15px;
    margin-top: 20px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    font-family: "Bebas Neue", serif;
    background-color: white;
}

.calBox h3 {
    margin-top: 25px;
    font-size: 20px;
    font-weight: 600;
}

.calBox h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 800;
}

/* Footer - Dev Credits & Accounts */
.footer {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.devname h3 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    font-size: 25px;
    font-weight: 500;
    color: #778da9;
    font-family: "Cedarville Cursive", cursive;
}

.devsocial {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.devsocial a {
    text-decoration: none;
    color: white;
}

.devsocial a i {
    font-size: 30px;
}

/* End BMI Cal CSS */