body {
    background: #F5F5F5;
}
.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.site-logo {
    font-size: 0;
    overflow: hidden;
    width: 256px;
    max-width: 67vw;
    background-image: url("logo.png");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.site-logo::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.contact-link {
    display: block;
    margin-top: 24px;
    font-family: 'Roboto Mono', monospace;
    color: rgba(0,0,0,0.87);
    text-decoration: none;
    font-size: 18px;
}

.path1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 16vmin;
    height: 28vmin;
    background: #FCB129;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.path2 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 16vmin;
    background: #4e3c97;
    clip-path: polygon(0 0, 100% 0%, 100% 100%);
}