html,
body {
    width: 100%;
    height: 100%;
}

.container {
    padding: 15px 0;
    margin: 0 auto;
    width: 1080px;
}

h1 {
    position: relative;
    margin-bottom: 33px;
    font-family: "Oswald", sans-serif;
    font-size: 42px;
    color: #262626;
}

.logoWrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 68vh;
}

.logoImage {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-repeat: none;
    transition: flex 0.3s ease;
}

.logoImage:hover {
    flex: 7;
    background-position-x: center;
}

.sourcetree {
    background-image: url("img/sourcetree.jpg");
}

.git {
    background-image: url("img/git.jpg");
}

.github {
    background-image: url("img/github.jpg");
}

.linkBlock {
    display: flex;
    justify-content: right;
    width: 100%;
    opacity: 0.9;
    margin-top: 18px;
}

.linkBlock a {
    padding: 0 0 0 10px;
}

.linkIcon {
    height: 33px;
    opacity: 1;
}

.linkIcon:hover {
    opacity: 0.6;
}
