* {
    padding: 0;
    margin: 0;
    font-family: Handlee, Arial, sans-serif
}

body {
    background-image: none;
}

#img-banner {
    display: block;
    width: 100%;
}

.wrapper {
    background-color: white;
    width: 100%;
}

button, a {
    color: #999999;
}

button:hover {
    background-color: #eef7fa;
    transition: all 0.6s ease;
}

button:hover, a:hover {
    cursor: pointer;
    color: #a9dcfa;
}

.welcome-text {
    color: #616161;
    padding: 10px 30px 20px;
}

.welcome-text h1 {
    font-size: 14px;
    line-height: 21px;
}

.welcome-text p {
    font-size: 15px;
    line-height: 23px;
}

button {
    outline: none;
    background-color: #f6fbfc ;
    border: none;
    margin: 0 0 2%;
    float: left;
    width: 25%;
    line-height: 25px;
}

.menu li {
    list-style: none;
    display: inline;
}

.footer {   
    padding: 10px 30px 20px;
}

.footer ul li {
    list-style: none;
    line-height: 30px;
}

.footer a {
    font-size: 15px;
    text-decoration: none;
}

#copyright {
    font-size: 12px; 
}

@media only screen and (min-width: 360px) {
    .menu-wrapper {
        height: 30px;
    }   
    
    .dot {
        height: 10px;
        width: 10px;
    }
}

@media only screen and (min-width: 550px) {
    button {
        font-size: 15px;
    }

    .footer a {
        font-size: 17px;
    }

    .menu-wrapper {
        height: 50px;
    }

    .dot {
        height: 15px;
        width: 15px;
    }
}

@media only screen and (min-width: 700px) {

    body {
        background-image: url("images/background-tile.jpg");
        background-repeat: repeat;
    }
    
    .wrapper {
        background-color: white;
        width: 600px;
        margin: 0 auto; 
    }

    button {
        font-size: 18px;
        height: 50px;
        font-weight: normal;
    }

    .welcome-text h1 { 
        font-size: 16px;
        line-height: 25px;
    }

    .welcome-text p {
        font-size: 15px;
        line-height: 25px;
    }

    #copyright {
        font-size: 13px; 
    }

    .slideshow {
        position: relative;
    }
}

@media only screen and (min-width: 1000px) {
    .wrapper {
        width: 1000px;
    }
    
    #copyright {
        font-size: 14px; 
    }
}

.slideshow {
    margin-bottom: 1%;
}

.slides {
    display: none;
    width: 90%;
    margin-left: 5%;
}

.dot {
    height: 10px;
    width: 10px;
    cursor: pointer;
    margin: 0 2px;
    background-color: #c7e9ff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #97c5e0;
}


.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.animate-fading {
    /* animation: fading 5s infinite */
}

@keyframes fading {
    0%   {opacity:0}
    25%  {opacity:1}
    75%  {opacity:1}
    100% {opacity:0}
}