* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    position: relative;
}

body {
    background-color: rgb(255,255,255);
    font-family: "Poppins", "Roboto", sans-serif;
}

/*   Header section    */
header {
    height: 80px;
    background-color: white;
}

.logo img {
    width: 25px;
    height: auto;
    transition: transform 0.8s ease-out;
}

.logo img:hover {
transform: rotate(360deg);
}

nav a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 100;
    position: relative;
    color: black;
    z-index: 10;
    padding: 26px;
}

nav a:hover {
    color: #2d2d46;
    background-color: #f8f8f8;
    font-weight: 300;
}


/*    Main Content    */
main {
    padding: 160px 0px 160px 0px;
}

main::before {
    content: "";
    position: absolute;
    background-image: url("img/design1.jpg");
    background-attachment: fixed;
    background-size: contain;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    opacity: 0.00;
}

/*       About me      */

.headshot img {
    max-width: 250px;
    margin: auto;
    display: block;
    animation: drop 1.3s ease;
    filter: drop-shadow(1px 2px 3px black);
    animation: scale 4s;
    transition: transform 0.1s;
}

.headshot img:hover{
transform: scale(1.02);
}

@keyframes scale {
    0% {transform: scale(.6);
    }
    100% {transform: scale(1);
  } 
}

.comment {
    width: 28%;
    margin: auto;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.comment img {
    width: 15px;
}

.comment a {
    font-size: 13px;
    color: #2d2d46;
    text-decoration: none;
    z-index: 0;
    padding: 0px 5px;
}
.comment a:hover {
    color: rgb(161, 161, 161);
}

.right-wrapper {
    width: 90%;
    text-align: center;
    position: relative;
    overflow-y: hidden;
    display: block;
}

.right-wrapper h1 {
    color: black;
    margin-bottom: 10px;
    margin-top: 30px;
    font-weight: 500;
    font-size: 30px;
}

.right-wrapper h2 {
    color: rgb(127, 127, 127);
    margin-bottom: 20px;
    margin-top: 5px;
    font-weight: 300;
    font-size: 20px;
}

.right-wrapper p {
    color: rgba(0, 0, 0, 0.569);
    font-weight: 300;
    font-size: 17px;
    animation: flyup 4s ease-in-out;
}
@keyframes flyup {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.right-wrapper strong {
    color: rgb(184, 184, 184);
    font-size: 12px;
}


.zzzbox {
    display: flex;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    box-shadow: 0px 16px 50px -29px #8593A0;
    transition: transform 0.5s;
    text-decoration: none;
}

.zzzbox img {
    width: 600px;
    object-fit: contain;
}

.zzzbox:hover {
    transform:translateY(-19px); 
}

.description {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    justify-content: center ;
    text-align: start;
    padding: 80px;
}

.zzz {
    background-color: rgb(255, 255, 255);
    margin: 40px 0px;
}

.zzz a {
    text-decoration: none;
}

.description h2 {
    font-size: 1.7rem;
    font-weight: 300;
    color: rgb(40, 40, 40);
}

.description p {
    font-weight: 300;
    padding: 5px 0px;
    color: rgba(0, 0, 0, 0.57);
}




h5 {
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    padding-top: 30px;
}



/*    My footer section   */

footer {
    background-color: #F8F8F8;
}

footer span {
    color: rgb(91, 91, 91);
    font-size: 13px;
    margin-left: 10px;
}
footer a {
    text-decoration: none;
}

footer span:hover {
    color: rgb(170, 170, 170);
}
footer img {
    width: 16px;
    
}


/* To make site responsive for ipades */
/* To make site responsive for ipades */
/* To make site responsive for ipades */
@media screen and (max-width: 992px) {



/* To make site responsive for Mobiles */
/* To make site responsive for Mobiles */
/* To make site responsive for Mobiles */

@media screen and (max-width: 768px) {
    
    nav a {
        padding: 17px;
        font-size: 13px;
    }
    main {
       padding: 60px 0px 20px 0px;
    }

    .right-wrapper {
        width: 100%;
        padding: 20px 0px;
    }

    .right-wrapper p, h1, h2 {
         text-align: start;
         width: 95%;
         margin: auto;
    }

    .comment {
        width: 50%;
    }
   
    .logo img {
        width: 25px;
    }
    nav a:hover {
        color: #2d2d46;
        background-color: #f3f3f3;
        font-weight: 300;
        padding: 0px;
    }

    .zzzbox {
        flex-direction: column;
    }
    .zzzbox img {
        width: 100%;
    }

    .description {
        padding: 20px;
    }

    .zzzbox h2 {
        margin: 0px;
        font-size: 18px;
        font-weight: 400;
        }

}


@media screen and (max-width: 440px) {



}
}
