html, body, p, h1, h2, h3, a{
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    scroll-behavior: smooth;
}
:root {
    --large-font: 36px;
    --medium-font: 23px;
    --small-font: 18px;
}
.hr{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hr hr{
    width: 1200px;
    height: 1px;
    background-color: #3a3a3a;
    border-radius: 5px;
    border: 1px solid #3a3a3a;
}
.orangebg{
    background-color: #ff6f00;
}
.lightdarkbg{
    background-color: #3a3a3a
}
.darkbg{
    background-color: #212121;
}
.offwhitebg{
    background-color: #fff0de;
}
.mycontainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-family: 'Poppins';
}
.cool-button{
	padding: 15px 25px 15px 25px;
    font-family: 'Poppins';
	font-size: large;
    border-radius: 4px;
    color: #ffffff;
    background-color: #ff6f00;
    border: solid 2px #ff6f00 !important;
    transition: 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}
.cool-button:hover{
    background-color: #ffffff;
    color: black;
    cursor: pointer;
    border: solid 2px #ff6f00;
}


/* header styling starts */
.outer-pre-header{
    width: 100%;
    padding: 10px 0px 10px 0px;
    background-color: #212121;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pre-header{
    background-color: #212121;
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.pre-header .left{
    font-size: 16px;
    color: #c2c2c2;
}
.pre-header .right{
    display: flex;
    flex-direction: row;
    align-items: center
}
.pre-header .right a{
    margin: 0px 0px 0px 20px;
    font-size: 16px;
    color: #c2c2c2;
    text-decoration: none;
}
.pre-header .right a:hover{
    color: #ffffff;
}
.outer-header{
    width: 100%;
    padding: 10px 0px 10px 0px;
    background-color: #3a3a3a;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.header{
    width: 1200px;
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.header .left{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 25px;
}
.header .left a{
    margin: 5px 15px 0px 15px;
    color: #c2c2c2;
    text-decoration: none;
}
.header .left a:hover{
    color: #ffffff;
}
.header .left img{
    height: 90px;
    margin-left: -8px;
    margin-top: -5px;
}
.header .left img:hover{
    cursor: pointer;
}
.header .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header .right button{
    margin: 5px;
    padding: 5px;
    border-radius: 8px;
    color: #ffffff;
    background-color: #000077;
    border: #0000ff 2px solid;
    font-family: 'Poppins';
    transition: 0.3s ease;
}
.header .right button:hover{
    background-color: #ffffff;
    color: #0000ff;
    cursor: pointer;
}


@media only screen and (max-width: 1200px) {
    .pre-header{
        background-color: #212121;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    .outer-pre-header{
        width: auto;
    }
    .outer-header{
        width: auto;
    }
    .header{
        width: 100%;
        justify-content: space-around;
    }
    .header .right button{
        font-size: 22px;
    }
    .header .left a{
        font-size: 26px;
    }
}
/* header styling ends */


.outer-footer{
    width: 100%;
    background-color: #3a3a3a;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer .column img{
    width: 300px;
    margin-left: -10px;
}
.footer{
    width: 1200px;
    margin: 30px 0px 30px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}
.footer .column{
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins';
    text-align: center;
}
.footer .column p{
    color: #ffffff;
}
.footer .column h2{
    font-family: 'Poppins';
    color: #ffffff;
}
.footer .column a{
    color: #c2c2c2;
    text-decoration: none;
    margin: 5px 0px 5px 0px;
}
.footer .column a:hover{
    color: #ffffff;
}
.after-footer{
    width: 100%;
    background-color: #212121;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.after-footer div{
    width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #c2c2c2;
}
.after-footer div a{
    color: #c2c2c2;
    text-decoration: underline;
}
.after-footer div a:hover{
    color: #ff6f00;
}
@media only screen and (max-width: 1200px) {
    .footer{
        width: 100%;
        flex-wrap: wrap;
    }
    .footer .column img{
        width: 150px;
        margin-left: -10px;
    }
    .after-footer{
        width: auto;
    }
    .after-footer div{
        width: 100%;
    }
}

