html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Helvetica Neue","Ubuntu",sans-serif;
}

a {
    color: #E72508;
    text-decoration: underline dotted;
    transition: 0.2s;
}

a:hover:not(.active) {
    color: #FC8B70;
}

.column {
    height: 100%;
    width: 50%;
    position: fixed;
    z-index: 1;
    top: 0;
}

.left {
    background-color: black;
    left: 0;
}

.right {
    background-color: white;
    right: 0;
}

header {
    max-width: 380px;
    margin-left: auto;
    margin-right: 70px;
    margin-top: 48px;
    padding-left: 10px;
    padding-right: 10px;
}

#logo {
    margin-right: 8px;
    max-height: 28px;
    max-width: 150px;
}

h1 {
    color: white;
    font-size: 36px;
    font-weight: 600;
}

p {
    font-weight: 500;
    font-size: 14px;
}

header p {
    color: #FFFFFFAB;
}

#photo {
    max-width: 300px;
    max-height: 300px;
    border-radius: 6px;
}

main {
    max-width: 380px;
    margin-right: auto;
    margin-left: 70px;
    margin-top: 48px;
    padding-left: 10px;
    padding-right: 10px;
}

main p {
    color: #000000AB;
}

h2 {
    margin-top: 25px;
    margin-bottom: 0px;
}

.links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0px 12px;
    margin-top: 10px;
    margin-bottom: 25px;
}

.links a {
    flex: 1 1 auto;
    background-color: rgb(255, 76, 50);
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    color: white;
	  transition: transform .15s ease,box-shadow .08s ease-in,-webkit-transform .15s ease;
    border-radius: 6px;
    box-shadow: inset 0 0 0 1px rgba(50,50,93,0.1),0 2px 5px 0 rgba(50,50,93,0.1),0 1px 1px 0 rgba(0,0,0,0.07);
    margin-top: 12px;
}

.links a:hover {
    box-shadow: inset 0 0 0 1px rgba(50,50,93,0.1),0 6px 15px 0 rgba(50,50,93,0.2),0 2px 2px 0 rgba(0,0,0,0.1);
    color: white;
}

.links #oneshot {
    flex: 1 1 100%;
}

.footnote {
    font-style: italic;
    text-align: center;
    margin-bottom: 25px;
}

.libera {
    text-align: center;
}

main img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    border-radius: 6px;
}

main img:hover {
    filter: brightness(110%);
}

footer {
    max-width: 380px;
    margin-right: auto;
    margin-left: 70px;
    margin-top: 48px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    font-size: 12px;
    color: #767676;
    text-align: center;
}

footer a {
    color: #767676;
}

footer a:hover:not(.active) {
    color: #B5B5B5;
}


@media screen and (max-width: 992px) {
    .column {
        height: revert;
        width: 100%;
        position: relative;
    }

    header {
        margin-right: auto;
        margin-top: 0;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    #photo {
        display: block;
        max-width: 160px;
        max-height: 160px;
        margin-left: auto;
        margin-right: auto;
    }

    main {
        margin-left: auto;
        margin-top: 24px;
    }

    footer {
        margin-left: auto;
    }
}
