@charset "UTF-8";

html {
    height: 100%;
}
body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#wrapper {
    width: 80%;
    max-width: 800px;
}
.logo:after {
    content: "";
    display: block;
    clear: both;
}

.tanacsadas {
    float: left;
    width: 50%;
    text-align: left;
}
.design {
    float: left;
    width: 50%;
    text-align: right;
}

.logo img {
    margin-bottom: 10%;
}

.logo a {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid black;
    color: black;
    font-family: 'Roboto', sans-serif;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}
.logo a:hover {
    background-color: black;
    color: white;
    text-decoration: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}


@media screen and (max-width: 400px) {
    .tanacsadas,
    .design {
        float: none;
        width: 100%;
        text-align: center;
    }
    .logo a {
        margin-bottom: 10%;
    }
}