* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background: linear-gradient(7deg, #4321C0, #222BD9);
    background-image: url('images/1000647029.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -300;
}

.header {
    padding: 20px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header h2 {
    color: #3053F0;
    font-weight: 900;
    font-size: 2em;
    transition: 0.3s ease-in-out;
}

.header h2:hover {
    color: #83B4FB;
    text-shadow: 2px 2px 10px #3053F0;
}

.header ul {
    display: flex;
}

.header li {
    display: flex;
    justify-content: space-around;
    padding: 15px;
}

.header a {
    color: #3053F0;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s ease-in-out;
}

.header a:hover {
    color: #83B4FB;
    text-shadow: 2px 2px 10px #3053F0;
}

.social-section {
    display: flex;
    padding: 20px;
    margin-top: 18pc;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.bt {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    padding: 20px;
    border-radius: 35px;
    background-color: #030430ea;
    transition: 0.4s ease-in-out;
    border: solid 4px #3053F0;
}

.bt:hover {
    box-shadow: 2px 2px 20px #8156f7;
}

.bt a {
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #3053F0;
}

.tpack-holder {
    display: flex;
    margin-top: 10em;
    align-items: center;
    justify-content: space-around;
}

.section1 {
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: solid #152053;
    transition: 0.6s ease-in-out;
}

.section1 h2 {
    color: #152053;
    font-size: 30px;
    font-weight: bolder;
    transition: 0.3s ease-in-out;
}

.section1 h2:hover,
.section1:hover {
    color: rgb(189, 217, 241);
    backdrop-filter: blur(50px);
}

.about-me {
    display: flex;
    margin-top: 12em;
    align-items: center;
    justify-content: space-around;
    margin: 4%;
}

.section01 {
    padding: 30px;
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: solid #152053;
    text-align: center;
    transition: 0.6s ease-in-out;
}

.section01 h2 {
    color: #152053;
    font-size: 30px;
    font-weight: bolder;
    transition: 0.3s ease-in-out;
}

.section01 p {
    font-size: 20px;
    color: #152053;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}


.section01 h2:hover,
.section01:hover,
.section01 p:hover {
    color: #030430;
    backdrop-filter: blur(50px);
}

.section01 p:hover {
    text-shadow: 1px 1px 5px #8ab7f5;
}

.footer {
    display: flex;
    margin-top: 250px;
    padding-bottom: 25px;
    padding-top: 10px;
    justify-content: space-around;
    align-items: flex-end;
    flex-direction: row;
    backdrop-filter: blur(15px);
    transition: 2.0s ease-in-out;
}

.footer:hover {
    backdrop-filter: blur(40px);
}

.credit,
.copyright,
.dc {
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    transition: 0.3s ease-in;
}

.credit h3,
.copyright h3,
.dc h3 {
    color: #0f0330;
    transition: 0.6s ease-in-out;
}

.credit h3:hover,
.copyright h3:hover,
.dc h3:hover {
    text-shadow: 2px 2px 10px #0f0330;
}

@media (max-width:1086px) {

    .about-me {
        display: flex;
        margin-top: 12em;
        align-items: center;
        justify-content: space-around;
        padding: 20px;
    }

    .section01 {
        padding: 25px;
        backdrop-filter: blur(30px);
        border-radius: 20px;
        border: solid #152053;
        text-align: center;
        transition: 0.6s ease-in-out;
    }

    .section01 h2 {
        color: #152053;
        font-size: 25px;
        font-weight: bolder;
        transition: 0.3s ease-in-out;
    }

    .section01 p {
        font-size: 15px;
        color: #152053;
        font-weight: 700;
        transition: 0.3s ease-in-out;
    }

    .bt {
        padding: 13px;
    }

    .bt a {
        font-size: 12px;
    }

    .credit h3,
    .copyright h3,
    .dc h3 {
        font-size: 14px;
    }
    
}
