* {
    font-family: Arial;
}

body {
    font-family: Arial;
    font-size: 14px;
    margin: 0;
}

#name{
    color: #fff;
    background-color: #17a488;
    font-size: 40px;
    margin-bottom: 10px;
    padding: 20px;

    animation-name: homeCycle;
    animation-duration:30s;
    animation-direction:alternate;
    animation-iteration-count:infinite;

    -webkit-animation-name: homeCycle;
    -webkit-animation-duration:30s;
    -webkit-animation-direction:alternate;
    -webkit-animation-iteration-count:infinite;
}

@keyframes homeCycle {
    0% {background-color:#17a488;}
    20% {background-color:#4183D7;}
    40% {background-color:#913D88;}
    60% {background-color:#F64747;}
    80% {background-color:#F39C12;}
}

@-webkit-keyframes homeCycle {
    0% {background-color:#17a488;}
    20% {background-color:#4183D7;}
    40% {background-color:#913D88;}
    60% {background-color:#F64747;}
    80% {background-color:#F39C12;}
} 

#desc{
    color: #17a488;
    font-size: 20px;
    margin-bottom: 30px;
}

#img-container{
    border:1px solid #17a488;
    width: 90%;
    overflow-x: scroll;
    overflow-y: hidden;
    max-height: 600px;
    margin: 10px auto;
    white-space: nowrap;
    text-align: center;
    background-image: url('bg.png');
}

#img-container img{
    display: inline-block;
    margin: 5px;
    vertical-align: top;
    padding: 2px;
}

#img-container img:hover{
    border: 2px solid #1abc9c;
    padding: 0;
}

.btn{
    background-color: #1abc9c;
    border: 1px solid #1abc9c;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.btn:hover{
    background-color: #17a488;
    border: 1px solid #17a488;
}

#selectbtn{
    margin-bottom: 20px;
    margin-top: 200px;
}

#footer{
    width: 100%;
    text-align: center;
    position: fixed;
    background-color: #DDD;
    bottom: 0;
    left: 0;
    padding: 10px;
}

a:link, a:visited{
    color: #0066FF;
    text-decoration: underline;
}

a:hover{
    text-decoration: none;
}

@media only screen and (max-height: 500px) {
    #selectbtn{
        margin-top: 20px !important;
    }
}