:root {
    /* fade transition style 1 */
    /* fade area stop (using percentage) */
    --fade-style1-stop1: 65%;
    --fade-style1-stop2: 80%;
    --fade-style1-stop3: 95%;
    --fade-style1-finalstop: 100%;

    /* fade opacity stop (using decimal) */
    --fade-style1-opacity1: 0.7;
    --fade-style1-opacity2: 0.4;
    --fade-style1-opacity3: 0.1;
    --fade-style1-finalOpacity: 0;

    /* colors */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
    /* background-image: linear-gradient(245deg, #EAF6FF, #D6F0FF, #F8FCFF); */
    /* background-image: linear-gradient(0deg, #0033ff, #977dff, #FFCCF2); */
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

.main-container {
    display: grid;

    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;

    padding-top: 10px;
    padding-bottom: 10px;

    width: 90%;

    grid-template-columns: repeat(12, 1fr);
    /* grid-auto-rows: auto; */
    row-gap: 10px;

    justify-content: center;
    align-content: center;

    /* justify-items: center; */

    /* border-style: solid; */

    user-select: none;
}

.grid-items {
    grid-column: 1 / span 12;

    /* border-style: solid; */

    /* background-color: rgba(225, 250, 249, 0.7); */
}

.grid-header {
    display: flex;

    flex-direction: column;
    gap: 5px;

    /* padding-left: clamp(20px, 1.5%, 350px); */
}

.grid-header h1, .grid-header p {
    margin-top: 0;
    margin-bottom: 0;
}

.grid-header p {
    text-decoration-line: overline;
    text-decoration-thickness: 2px;
}

.div-header-h1 {
    font-size: 3em;
    font-size: clamp(1em, 3.5vw, 3em);
    margin-bottom: 15px;
}

/* .div-header-tags {
    height: 20%;
} */

.div-photo {
    /* width: 50%; */
    width: 70%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.photo-profile {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.div-content-container {
    margin-top: 30px;
}

.div-content-header {
    /* margin-left: clamp(20px, 1.5%, 350px); */
    /* margin-right: clamp(20px, 1.5%, 350px); */
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    overflow-x: hidden;
}

.div-content-desc {
    width: 94%;
    margin-top: -3px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 30px;
    padding-left: 30px;
}

.tags {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
}

.tags-menu {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-right: 15px;
    padding-left: 15px;
}