html,
body {
    /* background-color: rgb(169, 213, 159); */
    background:url(flower2.jpg);
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

h1 {
    margin-top: 0;
}

h2 {
    font-family: "Swanky and Moo Moo", cursive;
    line-height: 1.4;
    font-size: 2.6rem;
    text-shadow: 0 0 4px deeppink;
    color: white;
}

h3 {
    font-family: "Swanky and Moo Moo", cursive;
}

.hidden {
    display: none !important;
}

.anchors {
    position: fixed;
    top: 50%;
    right: 20px;
    display: grid;
    gap: 16px;
}

.anchors a {
    padding: 1rem;
    background-color: white;
    text-align: center;
    border-radius: 50%;
    color: red;
}

.container {
    margin: 0 auto;
    width: 76%;
    display: flex;
    padding: 2%;
    font-size: 1.5rem;
}

.header, .header-fixed {
    background-color: rgb(112, 71, 112);
    margin-top: 2%;
    border-radius: 1rem 1rem 0 0;
    padding: 0;
    width: 80%;
    flex-direction: row;
}

.header-fixed {
    position: fixed;
    z-index: 1010;
    padding: 0 10%;
    top: 0;
    display: flex;
    border-radius: 0;
    margin: 0;
    border-bottom: #ff8989 solid 5px;
}

.header img, .header-fixed img {
    width: 300px;
    height: 50px;
    margin: 5%;
}
.header a, .header-fixed a {
    font-family: "Caveat", cursive;
    text-decoration: none;
    margin: 2%;
    font-weight: 800;
    font-size: 2rem;
}

.header a:link,
.header a:active,
.header a:visited,
.header-fixed a:link,
.header-fixed a:active,
.header-fixed a:visited {
    color: #D0DB97;
}

.header a:hover, .header-fixed a:hover {
    color: greenyellow;
    text-decoration: underline;
    background-color: rgba(0,0,0,0.25);
    border-radius: 2rem;
}

.header .navigation,
.header .help {
    width: 100%;
    align-content: center;
}

.header .navigation, .header-fixed .navigation {
    text-align: left;
    margin-left: 3%;
    display: flex;
    justify-content: space-between; /* Distributes space evenly */
}
      
.navigation a {
    padding: 10px; /* Adds space around each link */
    align-content: center;
}
      


.header .help {
    text-align: right;
    margin-right: 3%;
}

.header .help a:link {
    color: hsl(64, 100%, 81%);
}

.button {
    background-color: rgb(212, 126, 205);
    padding: 2%;
    border-radius: 1rem;
    border: 2px dotted rgb(255, 255, 255);
}

.content {
    width: 75.4%;
    background-color: white;
    border-style: solid;
    border-color: chocolate;
    border-width: 5px;
    flex-direction: column;
}

.aboutme {
   width: 100%;
   text-align: center;
    margin: 15px 0;
    text-shadow: 0 0 4px deeppink;
}

.contenttwo {
    width: 100%;
    background-color: #ffb8b8;
    border-radius: 3rem;
    border-style: solid;
    border-color: #ff8989;
    padding-bottom: 1.5rem;
}

.paboutme {
    margin: 0 5% 0 5%;
    font-family: Pixelify Sans ;
    text-shadow: 0 0 4px white;
}

#portfolio, #cats, h3 {
    text-align: center;
}

.portfolio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 125px;
    gap: 16px;
}

.portfolio .item {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    border: solid chocolate;
}

.portfolio .item:hover {
    cursor:pointer;
}

.portfolio .item:nth-child(odd) {
    grid-row: span 2;
}

.portfolio .item:nth-child(3n-1) {
    grid-row: span 3;
}

.portfolio .item img {
    object-fit: cover;
    width: 100%;
    object-position: center;
}

.fullscreen {
    background-color: rgba(255,255,255,0.90);
    position: fixed !important;
    text-align: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 1011;
}

.fullscreen img {
    height: 100%;
    width: auto !important;
    border-radius: 0 !important;
}

.description {
    display: none;
}

.cats .fullscreen .description {
    color: #614646;
   width: 50%;
   height: 100%;
   align-content: center;
   padding: 2rem;
   display: inline-block;
   font-family: Pixelify Sans ;
}

.cats .fullscreen .picture {
    height: 100%;
    width: 50%;
    align-content: center;
}

.cats .fullscreen .picture img {
    height: 100% !important;
    width: 100% !important;
}

.trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trigger img {
    display: none;
}

.footer {
    /* background-color: darkgray; */
    background-color:rgb(112, 71, 112);
    border-radius: 0 0 1rem 1rem;
}

.footer .endlogo {
    width: 100%;
}

.footer .endlogo img {
    width: 300px;
    height: 50px;
    float: left;
}

.copyright {
    font-family:  "Swanky and Moo Moo", cursive;
    float: right;
    margin: 4px 0 0 0;
    color: white;
}