/* Organized by sections, generally going from broad to specific. IE: body {} is first, all the ul & li styling is together, and all the media (images, video, iframe) are in a group.  */

/* ------------------------------------------------------
  Stylesheet Guide
  ------------------------------------------------------

    1. Global
        1.1. Fonts
            1.1.1. Header font - XXX
            1.1.2. Text font - XXX
        1.2. General styles
        1.3. Color scheme
            1.3.1. Blue (#4aa8fa) - Color scheme
            1.3.2. Pink (#fa5a88) - Color scheme
            1.3.3. Green (#2ddf7b) - Color scheme
        1.4. Typography
        1.5. Custom class
        1.6. Icons class
    2. Header
        2.1. Structure, logo
        2.2. Header text
    3. Sections
        3.1 Section header
        3.2. Main Index section
            3.2.1. Center-mid-1 
            3.2.2. Center-mid-2 
        3.3. Hobbies section
            3.3.1. Hobbies content
            3.3.2. Hobbies timeline
        3.4. Courses section
            3.4.1. Schedule section
            3.4.2. Skills 
        3.5. Contacts section
            3.5.1. Contact details
            3.5.2. Contact form
    4. Footer
    5. Media queries

------------------------------------------------------ */

/* ------------------------------------------------------
 General
------------------------------------------------------ */

body {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    color: #666;
    background-color: #b0c6eb;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 80px;
    }

h1 {
    font-size: 48px;
    color: #666;
    text-align: center;
}
footer {
    text-align: center;
    width: 100%;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;}
ul li {
    display: inline;
    padding: 10px;
    float: right;} 
ul li a, ul a :hover, ul li a:focus, ul li a:active {
    border: none;
    text-decoration: none;
    color: inherit;}
/* ------------------------------------------------------
 ID
------------------------------------------------------ */
#page {
    max-width: 940px;
    min-width: 720px;
    margin: 10px auto 10px auto;
    border: 4px  #000;
    background-color: #f2f2f2;
    vertical-align: baseline;
}

#home-about {
    width: 60%;
    margin: auto;
    text-align: center;
}

/* ------------------------------------------------------
 Class
------------------------------------------------------ */
.menu-holder {
    float: right;
    max-width: 80%;
    text-align: center;
    height: 100%;
    background-color: #ffffff;
    right: -100%;
    top: 0;
    transition: right .3s ease;
    width: 100%;
    overflow: auto;
    max-width: 100%;
    z-index: 99;}

.video {
    width: 100%;
    margin: 0 auto;
}
.center-title {
    font-size: 72px;
    text-align: center;
}

.column1of3 {
    float: left;
    width: 30%;
    margin-left: 2%;
    margin-bottom: 5%;
    background-color: #ebe4dd;}
.column2of3 {
    float: left;
    width: 30%;
    margin-left: 3%;
    margin-bottom: 5%;
    background-color: #ebe4dd;}
.column3of3 {
    float: left;
    width: 30%;
    margin-left: 3%;
    margin-bottom: 5%;
    background-color: #ebe4dd;}

.column1of4 {
    float: left;
    width: 23%;
    margin-left: 0%;}
.column2of4 {
    float: left;
    width: 23%;
    margin-left: 2%;}
.column3of4 {
    float: left;
    width: 23%;
    margin-left: 3%;}
.column4of4 {
    float: left;
    width: 23%;
    margin-left: 3%;}

.bigNumber {
    font-size: 120px;
    text-align: center;
}
.numberCaption {
    font-size: 48px;
    text-align: center;
}



