:root{
    --header-size: 20%;
    --body-size: 55%;
    --footer-size: 25%; 
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kalam', cursive;
    /* font-family: 'Quicksand', sans-serif; */

    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}

body{
    background-color: whitesmoke;
}

.container{
    position: relative;
    width: 100%;
    height: 100vh;

    overflow: hidden;
}

.imageSlider{
    position: absolute;
    width: 100%;
    height: 100%;

    top: 0;
}

.footer{
    position: relative;
    width: 100%;
    height: 20%;
    top: 80%;

    background-color: transparent;
}

.menu{
    position: absolute;
    width: 300px;
    height: 50px;
    right: 7%;
    top: 20px;

    background-color: transparent;
}

.menu-info{
    position: absolute;
    width: 280px;
    height: 20px;
    right: 7%;
    top: 0;

    text-align: center;
    letter-spacing: 5px;

    background-color: transparent;
}

.menu-item{
    position: relative;
    width: 40px;
    height: 100%;
    float: left;

    margin-left: 20px;

    opacity: 0.5;
    background: antiquewhite;

    transition: 400ms;
}

.menu-item:hover{
    cursor: pointer;
    opacity: 1;

    transition: 400ms;
}

.title{
    position: absolute;
    width: auto;
    height: 100%;

    left: 5%;

    background-color: transparent;
}

.title h3{
    font-size: 3em;
    font-weight: lighter;
    letter-spacing: 5px;
    text-align: left;

    /* background: red; */
}

.title h4{
    text-align: center;
    font-weight: lighter;
    letter-spacing: 4px;
    text-align: left;

    /* background: blue; */
}