:root {
    --darkGrey: rgb(70, 70, 70);
}

.eb-garamond-googleFont {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
  }

* {
    margin: 0;
    padding: 0;
    color: var(--darkGrey);
    font-family: "EB Garamond", serif;
    font-size: auto;
}


.enlargedBackground {
    position: fixed; 
    display: inherit; 
    width: 110%; 
    height: 110%; 
    top: -2;
    left: -2;
    right: 0;
    bottom: 0;
    background-color: rgb(0,0,0,0.5); 
    cursor: pointer; 
}

#overlay-wrapper {
    display: none;
    align-items: center; 
    justify-content: center; 
    position: fixed; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;

}

#enlargedPhoto {

    box-sizing: border-box;

    display: inherit;
    align-self: center;
    justify-self: center;
    background-color: white;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    width: min-content;
    height: min-content;
    overflow: hidden;
    z-index: 2000;

}

#enlargedDisplay {
    align-self: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    height: 550px;
    width: auto;
}

#pieceDescription {
    background-color: white;
    /* justify-self: center; */
    align-self: center;
    color: black;
    width: 30%;
    height: auto;
    display: block;
    margin: 20px;
}

body {
    background-color: white;
    margin: 0;
}

.grid {
    display: grid;
    margin: 30px;
    grid-template-columns: 1fr 300px 1fr;
    grid-template-rows: 100px 200px;
    place-items: center;
    background-color: white;
}

.tab_button {
   padding: 0 10px;
   color: var(--darkGrey);
   display: block;
}

.card {
    margin: 50px;
    background-color: white;
    box-shadow: none;
}

.formLabel {
    font-size: larger;
}

.inputFeild {
    width: 200px;
    height: 40px;
    margin-top: 10px;
    text-align: center;
    border-radius: 10px;
    border-color: rgb(90, 90, 90);
    border-style: solid;
    font-size: large;
    
}

.inputFeild:focus {
    opacity: .8;
    border-style: dashed;
    outline: none;
}

.button-button:hover {
    opacity: .5;
}

.photoCaption {
    font-size:medium;
}