/*/////////MAIN SETTINGS/////////*/
/*Im selecting the body and applying the values inside the brackets*/
body {
    background-color: #252839;      /*This will set the background color to dark blue*/
    -webkit- zoom: 100%;            /*This is zoom setting for chrome browser*/
    -moz- zoom: 50%;                /*This is a zoom setting for mozilla browser*/
}
/*Im selecting the wrapper where all my main content is*/
.wrapper {
    background-color: #252839;      /*This will set the background color to dark blue*/
    position: relative;             /*Relative position means that it will take into account other block sections*/
}
/*Im selecting the navigation links and my logo here*/
.main {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    background-color: #b5b5b7;      /*This will set the background color to grey*/
    border-style: groove;           /*This is the border style*/
    border-width: 0px 0px 0px 15px; /*The border will be on the left of the whole div*/
    border-color: #677077;          /*The color of the border*/
    margin-top: 50px;
}

/*Links styling*/
#nav:link {
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/
    color: #677077;                 /*This is the color of the navigation links*/
}

/*When the cursor is hovering on the link*/
#nav:hover {
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/
    color: white;                   /*When the mouse hovers on the text it will turn white*/
}

/*When clicked on the link*/
#nav:active {                       /*This is when the user is clicking on the link*/
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/
}
/*When the link was already visited*/
#nav:visited {                      /*This is when the user already visited the link*/
    text-decoration: none;          /*This gets rid of the links decoration so that they dont have bulletpoints*/
    color: #677077;                 /*This sets the color to greyish blue which is the original color*/
}
/*Selecting all the link elements*/
a:link {
    text-decoration: none;          /*Gets rid of all the bulletpoints for all links*/
}
.clear {
    clear: both;                    /*property specifies on which sides the elements can't float*/
}

/*/////////MAIN BODY/////////*/

.logo {
    position: relative;
    float: right;
    padding: 20px;
    margin-left: 700px;
    margin-right: 30px;
    margin-top: -120px;
}
#quote {
    padding: 0px 120px 120px 120px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #252839;
    text-align: left;
    line-height: 30px;
    font-size: 18pt;
    border-style: dashed;
    border-width: 0px 10px 0px 0px;
    border-color: #677077;
    float: left;
    height: 215px;
}
.main_text {
    font-size: 18pt;
    font-family: 'Roboto', sans-serif;
    padding: 0px 120px 120px 120px;
    float: right;
    margin-top: 100px;
    border-style: dashed;
    border-width: 0px 0px 0px 10px;
    border-color: #677077;
    font-weight: 400;
}
.main_text2 {
    font-size: 18pt;
    font-family: 'Roboto', sans-serif;
    padding: 120px 120px 120px 120px;
    float: left;
    text-align: center;
    font-weight: 900;
}
#last_text {
    margin-left: 100px;
    margin-top: 120px;
    color: #252839;
}

/*/////////JAVASCRIPT STYLING//////////*/
/*Selecting the time in the footer*/
#clock {
    font-size: 24pt;                   /*The size of the last text*/
    color: white;                      /*The color of the text*/
    font-family: 'Aldrich', sans-serif;/*The font of the text*/
    padding: 10px 0px 0px 0px;         /*The space from bottom*/
    position: relative;                /*Relative position means that it will take into account other block sections*/
    float: left;                        /*This will make the content float left*/
    font-weight: 900;                   /*How thick the text will be*/
    margin-left: -199px;                /*How far from the left*/
    margin-top: 150px;                  /*How far from the top*/
    padding: 0px 40px 0px 0px;          /*Space from right*/
}
/*Selecting the data JS*/
h3 {
    font-family: 'Aldrich', sans-serif; /*The font of the date*/
    color: #677077;                     /*The color of the text*/
    font-size: 20pt;                    /*The text size*/
    text-align: right;                  /*This will make the content float right*/
}
/*/////////FOOTER RELATED/////////*/
/*Footer Links styling*/
#footer_nav:link {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: #252839;                 /*The color*/
    font-weight: 400;               /*How thick the letters are*/
    font-size: 16pt;                /*The size of the text*/
    font-family: 'Lato', sans-serif;/*The font of the text*/
    line-height: 2;                 /*How far each line is away from each other*/
}

/*When the cursor is hovering on the link*/
#footer_nav:hover {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: white;                   /*The color will turn to white when user hovers over the link*/
}

/*When clicked on the link*/
#footer_nav:active {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: white;                   /*The color will turn to white when user clicks on the link*/
}
#footer_nav:visited {
    text-decoration: none;          /*Gets rid of the bulletpoints for links*/
    color: #252839;                 /*When the user already clicked the link the color will remain as originally it was*/
}
/*Selecting the main footer div*/
.footer {
    positon: relative;              /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/
    margin-right: 0px;              /*This will position the footer to be fully on the right*/
    width: 100%;                    /*The width of this div will always be 100% of the page*/
    height: 230px;                  /*The height of the footer*/
    background-color: #f2b632;      /*The color of the border*/
    border-style: dashed;           /*The style of the border*/
    border-width: 10px 0px 0px 0px; /*The border will only be at the top of the footer*/
    border-color: #252839;          /*The color of the border*/
}
/*Selecting the footer logo div*/
#footer_logo {
    padding: 0px 0px 0px 55px;     /*The space from the right*/
    position: relative;            /*Relative position means that it will take into account other block sections*/
    margin-top: 40px;              /*Moving the logo from the top*/
    margin-left: -25px;            /*Trying to position the logo */
    float: left;                   /*This will make the content float left*/
    color: #252839;                /*The color of the text*/
}
/*Selecting the footer logo2 div which is 'IT'*/
#footer_logo2 {
    padding: 0px 0px 0px 55px;     /*The space from the right*/
    position: relative;            /*Relative position means that it will take into account other block sections*/
    float: left;                   /*This will make the content float left*/
    margin-left: -255px;           /*Trying to position the logo */
    color: #252839;                /*The color of the text*/
    margin-top: 90px;              /*Moving the logo from the top*/
}
/*Selecting the last text*/
#copyright {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/
    font-size: 10pt;                /*The size of the last text*/
    color: #b5b5b7;                 /*The color of the text*/
    margin-top: 20px;               /*How far from the top it is*/
    font-family: 'Lato', sans-serif;/*The font of the text*/
    padding: 0px 50px 0px 0px;      /*The space from the right*/
}
.footer_text {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    padding: 0px 30px 0px 0px;      /*The space from the right*/
    line-height: 30px;              /*How far lines are away from each other*/
    border-style: solid;            /*The style of the border*/
    border-width: 0px 0px 0px 10px; /*The border will be on the right*/
    border-color: #252839;          /*The color of the border*/
    float: right;                   /*This will make the content float right*/
    margin-top: 50px;               /*How far from the top it is*/
}
/*Selecting the social media icons*/
.media {
    position: relative;             /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/
    margin-top: 80px;               /*How far from the top it is*/
    margin-right: 10px;             /*Moving it from right by 10px*/
}
/*Selecting the follow text id*/
#follow {
    font-size: 26pt;                /*The size of the last text*/
    color: #252839;                 /*The color of the text*/
    position: relative;             /*Relative position means that it will take into account other block sections*/
    float: right;                   /*This will make the content float right*/
    margin-right: 60px;             /*How far from right*/
    margin-top: 90px;               /*How far from left*/
}


/*/////////DECORATION/////////*/

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 380px 1000px 0px 0;
    border-color: #252839 transparent transparent transparent;
    position: relative;
    float: left;
    margin-left: -30px;
}
.hand {
    margin-top: -380px;
    position: relative;
    margin-left: 230px;
    /*Rotates the image*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(-22deg);
}
.small_rectangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 30.5px 0 30.5px;
    border-color: #f2b632 transparent transparent transparent;
    position: absolute;
    float: right;
    margin-left: 842px;
    margin-top: 470px;
}
.small_rectangle2 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 0 18px 25px;
    border-color: transparent transparent transparent #252839;
    position: relative;
    float: left;
    margin-top: 105px;
    margin-left: -115px;
}
.small_rectangle3 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 85px 55px 0 55px;
    border-color: #677077 transparent transparent transparent;
    float: right;
    margin-right: -50px;
}
.small_rectangle4 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 85px 55px 0 55px;
    border-color: #677077 transparent transparent transparent;
    float: left;
    margin-left: -180px;
    margin-top: 140px;
    position: absolute;
}
.small_rectangle5 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 30.5px 0 30.5px;
    border-color: #f2b632 transparent transparent transparent;
    margin-left: 315px;
}
.circle {
    width: 200px;
    height: 200px;
    background: #f2b632;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;
    border-radius: 200px;
    margin-left: 15px;
    margin-top: 80px;
}

/*/////////TYPOGRAPHY/////////*/

#about {
    color: #f2b632;
    text-shadow: 5px 5px #000026;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 50pt;
    padding: 20px;
    margin-top: -160px;
    margin-left: 50px;
    /*Rotates the word*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(338deg);
}

/*Styling the li element*/

#home {
    display: block;
    font-size: 26pt;
    font-family: 'Roboto', sans-serif;
    margin-top: -260px;
    margin-left: 450px;
    border-style: solid;
    border-width: 0px 0px 0px 8px;
    border-color: #f2b632;
    padding: 0px 0px 0px 10px;
    /*Rotates the word*/
    -webkit-transform: rotate(339deg);
    -moz-transform: rotate(339deg);
    -ms-transform: rotate(339deg);
    -o-transform: rotate(339deg);
    transform: rotate(339deg);
}
#tutorials {
    display: block;
    font-size: 26pt;
    font-family: 'Roboto', sans-serif;
    margin-top: -115px;
    margin-left: 610px;
    border-style: solid;
    border-width: 0px 0px 0px 8px;
    border-color: #f2b632;
    padding: 0px 0px 0px 10px;
    /*Rotates the word*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(339deg);
}
#users {
    display: block;
    font-size: 26pt;
    font-family: 'Roboto', sans-serif;
    margin-top: -135px;
    margin-left: 820px;
    border-style: solid;
    border-width: 0px 0px 0px 8px;
    border-color: #f2b632;
    padding: 0px 0px 0px 10px;
    /*Rotates the word*/
    -webkit-transform: rotate(349deg);
    -moz-transform: rotate(349deg);
    -ms-transform: rotate(349deg);
    -o-transform: rotate(349deg);
    transform: rotate(338deg);
}
h1 {
    font-family: 'Merriweather', serif;
    color: #252839;
    font-size: 35pt;
    margin-left: 20px;
}
h2 {
    margin-top: -25px;
    font-family: 'Merriweather', serif;
    color: #f2b632;
    font-size: 35pt;
    text-align: right;
}
h4 {
    color: #252839;
    font-weight: 400;
    font-size: 16pt;
    font-family: 'Lato', sans-serif;
}
h5 {
    font-family: 'Oswald', sans-serif;
    color: #f2b632;
    font-size: 40pt;
    text-align: right;
}
#year {
    color: white;
    font-size: 24pt;
    font-family: 'Yeseva One', cursive;
    letter-spacing: 2px;
}
#site {
    color: white;
    font-size: 24pt;
    font-family: 'Yeseva One', cursive;
    letter-spacing: 2px;
}
#main_text2 {
    color: #252839;
}
blockquote {
    font-family: Georgia, serif;
    position: relative;
    font-style: italic;
}
blockquote:before {
    display: block;
    content: "\201C";
    font-size: 140px;
    position: absolute;
    left: 40px;
    top: 20px;
    color: #252839;
}

/*Styling the li element*/

li {
    display: block;
    /*this will get rid of the points near lists*/
    font-size: 30pt;
    font-family: 'Merriweather', serif;
    padding: 0px 0px 0px 30px;
}

/*///////LOGO DESIGN/////////*/
/*This is the vector design movement
each of the elements inside the logo animation. The code was taken from:
http://codepen.io/Bidji/pen/dPEzwq */
.svg {
    display: block;
    position: relative;
    float: left;
    margin-left: 40px;
    margin-top: 110px;
    text-align: center;
    /*this aligns the logo inside*/
}
#svg {
    display: inline-block;
    vertical-align: middle; /*How the design elements are positioned*/
    fill: #f2b632;         /*Will start off with a white color*/
}
#svg path:nth-child(1) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.1s;
}
#svg path:nth-child(1):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(2) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
#svg path:nth-child(2):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(3) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
#svg path:nth-child(3):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(4) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
#svg path:nth-child(4):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(5) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
#svg path:nth-child(5):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(6) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
#svg path:nth-child(6):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(7) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
#svg path:nth-child(7):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(8) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}
#svg path:nth-child(8):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(9) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}
#svg path:nth-child(9):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(10) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
#svg path:nth-child(10):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(11) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}
#svg path:nth-child(11):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(12) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}
#svg path:nth-child(12):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(13) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.3s;
    animation-delay: 1.3s;
}
#svg path:nth-child(13):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(14) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.4s;
    animation-delay: 1.4s;
}
#svg path:nth-child(14):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(15) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}
#svg path:nth-child(15):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(16) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}
#svg path:nth-child(16):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(17) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.7s;
    animation-delay: 1.7s;
}
#svg path:nth-child(17):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
#svg path:nth-child(18) {
    -webkit-animation: pweek 1.8s linear infinite;
    animation: pweek 1.8s linear infinite;
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}
#svg path:nth-child(18):hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
@-webkit-keyframes pweek {
    0% {
        fill: white;    /*At 0% the color is white*/
    }
    50% {
        fill: white;    /*At 50% the color is white*/
    }
    100% {
        fill: #f2b632;  /*At 100% the color is orange*/
    }
}
@keyframes pweek {
    0% {
        fill: white;    /*At 0% the color is white*/
    }
    50% {
        fill: white;    /*At 0% the color is white*/
    }
    100% {
        fill: #f2b632;    /*At 0% the color is orange*/
    }
}
