@import url(https://fonts.googleapis.com/css?family=Roboto);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

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

html,
body {
    font-family: 'Roboto', sans-serif;
}

header{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header img {
    width: 100px;
}

header ul li {
    list-style: none;
    display: inline-block;
}

header ul a {
    font-size: 1.5rem;
    transition: all ease 0.4s;
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
}

header ul a:hover {
    background-color: rgb(196, 196, 196);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 149px);
}

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

main section .Item {
    margin: 1rem;
    transition: all ease 0.4s;
}

main section .Item:hover {
    transform: scale(1.02);
}

main section .Item img {
    display: block;
    border: #000 3px solid;
    border-radius: 10px;
}

main section p {
    text-align: center;
    font-size: 2rem;
    margin-top: 1rem;
}

main .sketchfab-embed-wrapper {
    height: 100%;
    width: 100%;
}

main .sketchfab-embed-wrapper iframe {
    display: block;
    height: 100%;
    width: 100%;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

footer a {
    transition: all ease 0.4s;
}

footer a:hover {
    color: gray;
}

@media screen and (max-width: 768px) {
    main {
        height: 100%;
    }

    main section {
        flex-direction: column;
    }

    main section .Item img {
        width: 300px;
    }

    main .sketchfab-embed-wrapper {
        height: calc(100vh - 160px);
    }

    footer p {
        text-align: center;
    }
}