*{
    padding: 0;
    margin: 0;
}

/*navbar*/
.navbar {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(to right, #41909e, #b74848);
    color: white;
    text-transform: uppercase;
}
body, html{
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/*main*/
.main-section {
    margin: 20px;
    flex-grow: 1;
}
form {
    margin: auto 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 40px;
}
@media only screen and (min-width: 768px){
    form{
        margin: auto;
        max-width: 500px;
    }
}
form, input::placeholder {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: grey;
}
input{
    padding: 11px;
    border: 2px solid gray;
    border-radius: 8px;
    cursor: pointer;
}
button{
    padding: 11px;
    border: 2px solid gray;
    border-radius: 8px;
    margin-top: 10px;
    transition: transform 0.3s ease-in-out;
    font-weight: 700;
    text-transform: uppercase;
}
button:hover{
    transform: scale(1.07);
    cursor: pointer;
    background-color: aquamarine;
    color: #330000;
}
/*io section*/
.javascript-updates{
    text-align: center;
    margin: 10px 0px;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    cursor: pointer;
}
.javascript-updates:nth-child(1){
    color: #4f4f4f;
    transition: transform .3s ease-in-out;
}
.javascript-updates:nth-child(1):hover{
    color: #4f4f4f;
    transform: scale(1.04);
}
.javascript-updates:nth-child(2){
    color: #a34c55;
    transition: transform .3s ease-in-out;
}
.javascript-updates:nth-child(2):hover{
    color: #a34c55;
    transform: scale(1.04);
}
.javascript-updates:nth-child(3){
    color: #3805db;
    transition: transform .3s ease-in-out;
}
.javascript-updates:nth-child(3):hover{
    color: #3805db;
    transform: scale(1.04);
}
.javascript-updates:nth-child(4){
    color:#b08354;
    transition: transform .3s ease-in-out;
}
.javascript-updates:nth-child(4):hover{
    color:#b08354;
    transform: scale(1.04);
}
/*footer*/
.footer{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
    height: 40px;
    background-color: gray;
    justify-content: center;
}