@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

/*---------------HEADER ---------------*/
@import url(../style/header.css);

/*---------------HOME SECTION ---------------*/
@import url(../style/home_section.css);

/*---------------OVERVIEW SECTION ---------------*/
@import url(../style/overview.css);

/*-----------ABOUT SECTION -----------*/
@import url(../style/about_section.css);

/*----------------SKILLS SECTION-------------------*/
@import url(../style/skill_section.css);

/*----------------EDUCATION & CERTIFICATE SECTION---------------*/
@import url(../style/education_section.css);
@import url(../style/certificate_section.css);

/*----------------CONTACT SECTION---------------*/
@import url(../style/contact_section.css);

/*-----------------FOOTER-----------------*/
@import url(../style/footer.css);



/*---------------MAIN STYLE CODE ---------------*/

:root {
    --primary-color: #0055fe;
    --primary-light-shade: #3a7dff;
    --secondary-color: #fff;
    --secondary-light-shade: rgb(255, 255, 255, 0.6);
    --bg-color-1: #000;
    --bg-color-2: #1a1a1a;
    --homebgshade: rgba(0, 0, 0, 0.5);
    --border-1: 1px solid rgb(255, 255, 255, 0.07);
    --border-2: 1px solid rgb(255, 255, 255, 0.1);
    --border-button: 2px solid rgb(255, 255, 255, 0.15);
    --hover-border: 1px solid linear-gradient
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Questrial';
    box-sizing: border-box;
}

section {
    width: 100%;
    margin: 0;
    padding: 30px;
    padding-bottom: 150px;
    background: var(--bg-color-1);
    box-sizing: border-box;
}

@media(max-width: 520px) {
    section {
        padding: 20px;
    }
}

@media(max-height: 520px) and (min-width: 520px) {
    section {
        height: auto;
    }
}

/*====HEADINGS====*/

.section-heading {
    font-size: 80px;
    color: var(--secondary-color);
    text-align: center;
    margin: 0;
    padding: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}


.section-heading span{
    color: var(--primary-color);
}

@media(max-width: 768px) {
    .section-heading {
        font-size: 40px;
    }
}

@media(max-width: 520px) {
    .section-heading {
        font-size: 30px;
    }
}

/*====HEADINGS====*/


/*---------------MAIN STYLE CODE END ---------------*/