* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f6f6f6;
}

.wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -2%;
}

.logo {
    background: url('Logo_TorbenBuder.svg') no-repeat;
    background-size: 100% 100%;
    width: 200px;
    height: 200px;
    opacity: 0;
    transition: all 1s ease-out 1s;
}

.content {
    background-color: #263E61;
    width: 700px;
    height: 400px;
    display: -webkit-flex;
    display: flex;
    opacity: 0;
    transition: all 1s ease-out 2s;
}

.foto {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    background: url('torben-buder.jpg');
    width: 300px;
    height: 350px;
    background-size: cover;
    margin: 25px;
}

.text {
    color: #f6f6f6;
    font-family: 'Roboto Condensed';
    margin: 25px 25px 25px 0;
}

h1 {
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom:25px;
}

a {
    color: #f6f6f6;
}

.web {
    color: #263E61;
    font-family: 'Roboto Condensed';
}

.fadein1 {
    opacity: 1;
    transform: translateY(-20px);
}

@media screen and (max-width: 700px) {
    .content {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .foto {
        width: 80%;
        margin: 10% auto;
        height: 300px;
    }

    .text, .web {
        width: 80%;
        margin: 0 auto 10% auto;
        text-align: center;
    }

    .wrapper {
        margin-top: 10px;
        height: auto;
    }
}
