@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

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


html {
    font-size: 0.8rem;
    font-family: "work sans";
}

body {

}

header {
    position: fixed;
    font-size: 23px;
    line-height: 22px;
    color: #fcfcfc;
    left: calc(var(--unit-body-margin)*2);
    top: calc(var(--unit-body-margin)*2);
    z-index: 100;

}

.nav-container {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    
}

.nav-button {
    height: 100%;
    width: 50%;
    /*border: 1px solid red;*/
}

.right:hover {
    cursor: url(cursor/arrow-right.png), auto;
}

.left:hover {
    cursor: url(cursor/arrow-left.png), auto;
}

.button {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    border: 2px solid yellow;
    cursor: pointer;
}

.button:hover, button:active {
    background-color: yellow;
}



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

.background-image-container {
    display: flex;
    /*width: calc(100vw - 16px);*/
    height: calc(100vh - 16px);
    margin: 8px;

    border-radius: var(--variable-border-radius);
    cursor: pointer;
    background-color: black;

}



.background-picture {
    display: flex;
    border-radius: var(--variable-border-radius);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait {
    display: none;
}


.background-image-caption {
    display: inline-flex;
    color: red;
    font-size: 12px;
    line-height: 13px;
    margin: 0px 8px 8px 8px ;
}

.numbertext {
    display: inline-flex;
    color: black;
    font-size: 12px;
    line-height: 13px;
    margin: 0px 8px 8px 8px ;
}



.control {
    color: red;
    background-color: azure;
    width: 50%;
}
