/*calculate padding with inner width*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    font-family: Arial, Helvetica, sans-serif;
}

/* Outlines as red to see borders of boxes: */
/* *{
 outline: 1px solid red;
} */

html, body {
    margin: 0;
    padding: 0;
}

/********************* Visual Styles: tags *********************/

a {
    text-decoration: none;
    color: black;
}

footer {
    background-color: rgb(34, 34, 34);
}

h1 {
    /* font-size: 100px; */
    font-size: 500%;
    margin: 10px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 300%;
        margin: 8px;
    }
    h2 {
        font-size: 35px;
        margin: 8px;
    }
    p {
        margin: 10px;
    }
}

@media (max-height: 600px) {
    h1 {
        font-size: 200%;
        margin-top: 200px;
    }
    h2 {
        font-size: 20px;
        margin: 8px;
    }
    /* .mainTextP {
        font-size: 10px;
    } */
}

@media (min-width: 1000px) {
    .blurbContent {
        margin: 15px;
        font-size: 16px;
        font-size: 1.7vw;
    }
}


h2 {
    font-size: 45px;
    margin: 10px;
}

input {
    margin-left: 15px;
    background-color: rgb(252, 204, 212);
}

li {
    text-decoration: none; /*to remove line under links*/
}

nav {
    display: flex; /*to make appear in line*/
    justify-content: space-between;
    background-color: white;
    border: solid black 1px;
}

p {
    margin: 10px; 
    /* text-align: justify;
    text-justify: inter-word; */
}

section {
    background-color: rgb(252, 204, 212);
}

ul {
    display: flex;
    list-style-type: none;
    width:500px;
    justify-content: space-around;
    font-size: 20px;
}



/********************* Visual Styles: classes *********************/

.aboutButton {
    margin: 10px;
    width: 200px;
    height: 50px;
    border-radius: 30px;
    text-align: center;
    padding-top:9px;
    background-color: rgb(255, 220, 105);
}

.bazPic {
    /* width: 3000px; */
    border-radius: 10px;
    height: auto;
    max-width: 100%; 
}

.barameyPicture {

    display: flex;
    align-items: center;
    
}

.blurbContent {
    text-align: justify;
    text-justify: inter-word;
    padding-right: 15px;
}

.blogContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.blogContent {
    display: none;
}

.blogIndividual {
    background-color: rgb(226, 251, 249);
    border-radius: 25px;
    width: 700px;
    height: auto;
    padding: 10px;
    box-shadow: 5px 5px 20px rgb(90, 141, 140);
    margin-top: 25px;
    /* border: 1px solid black; */
}

.contactContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contactMe {
    background-color: rgb(226, 251, 249);
    border-radius: 15px;
    /* width: 600px; */
    width: 80%;
    height: auto;


    box-shadow: 5px 5px 20px rgb(90, 141, 140);
    margin-top: 25px;
    margin-bottom: 25px;
}

.experienceContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.experienceIndividual {
    background-color: rgb(226, 251, 249);
    border-radius: 25px;
    width: 300px;
    height: 200px;
    box-shadow: 5px 5px 20px rgb(90, 141, 140);
    margin-top: 25px;
    /* border: 1px solid black; */
}

.footerTitle {
    color: white;
    text-align: center;
}

.hamburgerButton {
    display: none;
}

.hide {
    display: none;
}

.inputButton {
    border-radius: 5px;
    margin-bottom: 15px;
}

.inputDetails {
    border-radius: 5px;
    width: 50%;
}

/* .inputMessage {
    border-radius: 10px;
    width: 50%;
} */

.main {
    background-color: rgb(166, 243, 255);
    height: 100vh; /*to fill the screen */
    font-size: 30px;
}

.message {
    border-radius: 5px;
    border-color: black;
    border-width: 2px;
    width: 90%;
    margin-left: 15px;
    background-color: rgb(252, 204, 212);
}

.mainArea {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.mainSocials {
    margin-top: 10px;
    margin-bottom: auto;
    margin-right: 10px;
    text-decoration: none;
}

.contactSocials {
    margin: 10px;
}

.mainText {
    margin-left: 40px;
    margin-bottom: 180px;
}

.mainTextP {
    font-size: 40px;
    font-size: 5vw;
}

.secretLogin {
    color:rgb(106, 164, 173);
}

.sub-section {
    background-color: rgb(255, 190, 255);
    display: flex;
    justify-content: space-around;
    padding: 50px;
}

@media(max-width: 750px) {
    .sub-section {
        display: block;
    }
}


.sub-sectionExperience {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 50px;
}

.sub-sectionBlog {
    background-color: rgb(255, 241, 114);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 50px;
}

.threeStripes {
    width: 40px;
}

/********************* Animation: *********************/

.aboutButton:hover {
    background-color: rgb(255, 106, 0);
    color: white;
}

.aboutButton:active {
    background-color: black;
    color: white;
}

.blogIndividual:hover {
    transition: 0.2s;
    background-color: rgb(249, 199, 232);
    height: auto;
}

.blogIndividual:hover > .blogBlurb{
    display: none;
}

.blogIndividual:hover > .blogContent{
    transition: 30s;
    display: block;
}

.experienceIndividual:hover {
    background-color: rgb(255, 255, 154);
}

li:hover {
    background-color: pink;
}

/* When browser width <750px */
@media only screen and (max-width: 750px) {
    .hamburgerButton {
        display: block;
        border: 0;
        background-color: transparent;
    }

    ul {
        display: none;
        width: 300px;
    }

    ul.show {
        display: block;
    }

}

