html, body, div {
    font-family: Arial, Helvetica, sans-serif;
}

html {
    background: #000;
}

a:link, a:visited, a:hover, a:active, a {
    color: #bcbdc0;
    text-decoration: none;
}

a {
    color: #bcbdc0;
    -webkit-transition: color 0.5s ease-in-out;
    -moz-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

a:hover{
    color: #fff051;
    cursor: pointer;
    -webkit-transition: color 0.5s ease-in-out;
    -moz-transition: color 0.5s ease-in-out;
    -o-transition: color 0.5s ease-in-out;
    transition: color 0.5s ease-in-out;
}

#container {
    margin: 50px 0;
    text-align: center;
}

.logo {
    width: 50%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text {
    width: 90%;
    color: #fff;
    font-weight: 400;
    font-size: 45px;
    line-height: 45px;
    padding: 0 5%;
    margin-top: 60px;
}

.link {
    margin-top: 30px;
}

.link a {
    font-size: 30px;
    font-size: 35px;
    line-height: 35px;
}

.images {
    margin-top: 60px;
}

.images img {
    display: inline-block;
    margin: 20px;
    width: 200px;
    height: auto;
    border: 2px solid;
    border-color: #000;
    -webkit-transition: border-color 0.2s ease-in-out;
    -moz-transition: border-color 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out;
}

.images img:hover {
    border: 2px solid;
    border-color: #fff051;
    -webkit-transition: border-color 0.2s ease-in-out;
    -moz-transition: border-color 0.2s ease-in-out;
    -o-transition: border-color 0.2s ease-in-out;
    transition: border-color 0.2s ease-in-out;
}

@media only screen and (max-width: 900px) {
    .logo {
        width: 90%;
        height: auto;
    }
}

@media only screen and (max-width: 600px) {
    #container {       
        margin-top: 0;
        padding: 20px;
    }

    .logo {
        width: 100%;
        height: auto;
    }

    .text {
        width: 90%;
        padding: 20px 5%;
        font-size: 40px;
        line-height: 50px;
    }

    .link a {
        font-size: 25px;
        line-height: 25px;
    }

    .images img {
        display: block;
        margin: 20px 5%;
        width: 90%;
        height: auto;
    }
}