*{
    margin: 0;
    scroll-behavior: smooth;
}
body{
    background-color: #eaf5ff;
}

/*making the animation*/
.reveal{
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: .6s ease-in-out;
}
                                                                                        
.reveal.active{
    transform: translateY(0);
    opacity: 1;
}
/* End animation */

/* Go to the top function */

#top {
    display: none;
    position: fixed; 
    bottom: 2em;
    right: 2em;
    z-index: 99;
    border: none;
    background-color: #333; 
    color: #5287b4;
    cursor: pointer; 
    padding: 15px;
    border-radius: 25px; 
    font-size: 17px;
  }
  /* when the mouse is over not only the cursor will change, but the color aswell */
  #top:hover {
    background-color: #555;
  }
/* end of function */


/* Start side navigation menu */
    /* the menu/sidenav */
    .sidenav {
        position: fixed;
        width:17%;
        background-color: rgb(40, 42, 46);
        height:100%;
        overflow-x: hidden;
        z-index: 0;
        display: flex;
        text-align: center;
        flex-direction: column;
    }
    .nav{
        padding-top: 5em;
        display: flex;
        flex-direction: column;

    }
    /* Style the sidenav links and the dropdown button */
    .sidenav a, .dropdown {
        text-decoration: none;
        border-radius: 10px;
        padding:10px;
        border: none;
        max-width: 100%;
        background: none;
        font-size: 20px;
        color: #7aa3c5;
        font-family: "Raleway", sans-serif;
        display: block;
    }
    
    /* On mouse-over */
    .sidenav a:hover, .dropdown:hover {
        background-color: #eaf5ff;
        max-width:100%;
    }
    
    /* Dropdown list. */
    .Sprints {
        background-color:#333;
        box-shadow: 0 6px 8px rgb(0, 0, 0, 0.20);
        width: 100%;
        display: none;
    }

    /* The caret down icon */
    .fa-caret-down {
        color: black;
        float: right;
        padding-right: 8px;
    }
    /* The logo */
    .logo{
        text-transform: uppercase;
        font-size: 30px;
        font-weight: bolder;
        display:flex;
        flex-direction: column; 
        color:#eaf5ff; 
        margin-top: 3em;
        margin-bottom: 2em;
        background-color: rgb(40, 42, 46);
    } 
    .logo span{
    color:#5287b4;
    background-color: rgb(40, 42, 46);
    }
/* End side navigation menu */

 /* Main home content */
    .HomeBody{
        display:flex;
        flex-direction: column;
        max-width: max-content;
        padding:1em;
        margin-left: 19%;
        padding-top: 20%;
        font-size: 20px;
        font-family: sans-serif; 
    }
    /* About me */
    .aboutme{
        padding-top: 45%;
        
    }
   .about{
        color:black;
        text-transform: uppercase;
        font-size: 28px;
        font-weight: bolder; 
        padding-bottom: 1em;
   }
   /* Span color for title */
   span{
        color:#5287b4;
   }
   .AboutmeContent{
    border-left: 6px solid black;
    max-height:100%;
    padding:2em;
    margin-left: 1em;
    box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20); 
    border-radius: 20px; 
   }
/* End home content */

/* Start Introduction content */

    .IntroBody{
        display:flex;
        flex-direction: column;
        padding:1em;
        margin-left: 19%;
        padding-top: 5em;
        font-size: 17px;
        font-family: sans-serif; 
    }
     /* the top menu */
   .smallmenu{
    position: fixed;
    top: 1em;
    width: 40%;
    z-index: 5;
    display: flex;
    background-color: rgb(40, 42, 46);
    justify-content: space-around;
    box-shadow: 0 6px 18px rgb(0, 0, 0, 0.20); 
    border-radius: 20px; 
   }
   .smallmenu a{
    display: block;
    padding: 1em;
    text-decoration: none;
    color: #7aa3c5;
   }
   .smallmenu a:hover{
    color: #eaf5ff;
   }
   /* start of the introduction layout/content */
    .introduction{
        padding: 1em;
        display: flex;
        flex-direction: column;
    }
    .introlayout{
        display: flex;
        flex-direction: row;
        border-left: 6px solid black;
        background-color: antiquewhite;
        max-height:100%;
        max-width: max-content;
        padding:2em;
        margin-left: 1em;
        box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20); 
        border-radius: 20px; 
    }
    .introcontent{
        display: flex;
        flex-direction: column;
        max-width: 70%;
    }
    .introtitle{
        text-transform: uppercase;
    }
    .introtitle2{
        padding: 1em;
        padding-top: 3em;
    }
    .introimage{
        display: flex;
        flex-direction: column;
        max-width: 50%;
    }
/* End introduction content */

/* Start profile content */
    .profileBody{
        display:flex;
        flex-direction: column;
        max-width: max-content;
        padding:1em;
        margin-left: 19%;
        padding-top: 5em;
        font-size: 17px;
        font-family: sans-serif; 
    }
    /* boxes/layout for the sprints */
        .sprintbox{
            max-width: max-content;
            padding-bottom: 5em;
        }
        .sprinttitle{
            padding: 2em;
            padding-top: 3em;
        }
        /* content inside the boxes */
        .boxlayout{
            display: flex;
            flex-direction: row;
            border-left: 6px solid black;
            background-color: antiquewhite;
            max-height:100%;
            max-width: max-content;
            padding:2em;
            margin-left: 1em;
            box-shadow: 0 3px 8px rgb(0, 0, 0, 0.20); 
            border-radius: 20px;   
        }

        .sprintcontent{
            display: flex;
            flex-direction: column;
        }
        .sprintimage{
            display: flex;
            flex-direction: column;
            max-width: 40%;
        }
/* End profile content */

/* Start contact content */
.contactBody{
    display:flex;
    flex-direction: column;
    max-width: max-content;
    padding:1em;
    margin-left: 19%;
    padding-top: 5em;
    font-size: 17px;
    font-family: sans-serif; 
}


