* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'EB Garamond', serif;
}

body {
    transition: background .5s linear, color .5s linear;
}

p {
    margin-left: 5px;
    margin-bottom: 10px;
}

h3 {
    font-weight: 500;
}

a {
    transition: color .5s linear;
    color: black;
}

a:hover {
    color: blue;
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.picture {
    max-width: 100%;
    max-height: 100%;
}

.pic {
    height: 100%;
    width: 100%;
}

.linklt {
    color: white;
}

.linklt:hover {
    color: blue;
}

.linkdk {
    color: black;
}

.linkdk:hover {
    color: blue;
}

#wrapper {
    height: 100vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 350px 1fr;
    grid-template-rows: 50px 1fr;
    grid-template-areas: "header header"
        "text margin";
}

#header {
    padding: 30px 30px 10px 30px;
    grid-area: header;
}


#left {
    grid-area: text;
    padding: 30px;
}


#image-box {
    width: 600px;
    height: 600px;
}



@media screen and (max-width: 600px) {
    #wrapper {
        justify-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: 50px 1fr 0px;
        grid-template-areas: "header"
            "text"
            "margin";
    }

    #left {
        justify-items: center;
    }

    #left p {
        text-align: center;
    }

    #right {
        visibility: hidden;
    }

    #image-box {
        width: 0px;
        height: 0px;
    }

    .picture {
        max-width: 100px;
        max-height: 100px;
    }

}