/* Kuzmann Eszter személyes weboldal */

body {
    color: #001E2B;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    background-color: #f1f1f1;
}

.container {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

h1{
    font-family: 'Cabin Sketch', cursive;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 0;
    margin-top: 1rem;
    line-height: 1;
}

h2 {
    font-family: 'Cabin Sketch', cursive;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    margin-top: .5rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.website {
    margin-top: 2rem;
}

.links {
    font-size: 14px;
    margin-top: .7rem;
}

.links a {
    display: inline-block;
    border: 1px solid #001E2B;
    padding: .6em 1em;
    margin-right: 1em;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    -webkit-box-shadow: 5px 5px 0px 0px rgba(0, 30, 43, .8);
            box-shadow: 5px 5px 0px 0px rgba(0, 30, 43, .8);
    position: relative;
    top: 0;
    left: 0;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.links a:active {
    top: 4px;
    left: 4px
    -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 30, 43, .6);
            box-shadow: 1px 1px 0px 0px rgba(0, 30, 43, .6);
}

.links a:last-of-type {
    margin-right: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a.website-link:hover {
    color: #00A5ED;
}

@media(min-width: 600px) {
    h1 {
        font-size: 60px;
    }
    h2 {
        font-size: 40px;
    }
}

@media(min-width: 800px) {
    body {
        font-size: 25px;
    }
    h1 {
        font-size: 90px;
    }
    h2 {
        font-size: 50px;
    }
    .links a {
        padding: 1em 1.5em;
    }
}