@font-face {
    font-family:"IndieFlower";
    src:url("../fonts/IndieFlower-Regular.ttf");
}
@font-face {
    font-family:"Bungee";
    src:url("../fonts/Bungee-Regular.ttf");
}

:root{
--cream:#e9e2ca;

--green:#868f67;
--olive:#687055;

--dark:#3d3d32;
--dark2:#38382e;

--orange:#d87532;

--paper:#f4efdf;

--brown: #b99f87;/*#9e8a77;*/
}

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

/* =====================
         HTML
===================== */
html {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;

    background-color: #c2ad8c;
    background-image:

            /* Wave 1 - dark brown */
            radial-gradient(circle at 100% 50%,
                transparent 18%,
                rgba(90,70,45,.28) 19%,
                rgba(90,70,45,.28) 25%,
                transparent 26%),

            radial-gradient(circle at 0% 50%,
                transparent 18%,
                rgba(90,70,45,.28) 19%,
                rgba(90,70,45,.28) 25%,
                transparent 26%),


            /* Wave 2 - warm brown */
            radial-gradient(circle at 0% 50%,
                transparent 20%,
                rgba(130,85,45,.18) 21%,
                rgba(130,85,45,.18) 24%,
                transparent 25%),

            radial-gradient(circle at 100% 50%,
                transparent 20%,
                rgba(130,85,45,.18) 21%,
                rgba(130,85,45,.18) 24%,
                transparent 25%),


            /* Wave 3 - caramel */
            radial-gradient(circle at 100% 50%,
                transparent 16%,
                rgba(170,125,75,.16) 17%,
                rgba(170,125,75,.16) 27%,
                transparent 28%),

            radial-gradient(circle at 0% 50%,
                transparent 16%,
                rgba(170,125,75,.16) 17%,
                rgba(170,125,75,.16) 27%,
                transparent 28%),


            /* Wave 4 - dark accent */
            radial-gradient(circle at 0% 50%,
                transparent 20%,
                rgba(65,45,30,.12) 21%,
                rgba(65,45,30,.12) 24%,
                transparent 25%),

            radial-gradient(circle at 100% 50%,
                transparent 20%,
                rgba(65,45,30,.12) 21%,
                rgba(65,45,30,.12) 24%,
                transparent 25%);

    background-size:
        20px 60px,
        20px 60px,
        20px 60px,
        20px 60px,
        20px 60px,
        20px 60px,
        20px 60px,
        20px 60px;

    background-position:
        right top,
        left 30px,

        left 15px,
        right 45px,

        right 30px,
        left 60px,

        left 45px,
        right 75px;

    background-repeat: repeat;
}
html::before{
    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    opacity:.05;

    background-image:

    radial-gradient(circle,#000 4px,transparent 4px);

    background-size:6px 6px;
}

/* =====================
         BODY
===================== */
body{
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;

    background:var(--cream);

    color:var(--dark);

    font-family: "IndieFlower", sans-serif;

    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    min-width: 256px;
    padding-top: 8px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;

    background-color:#e9e2ca;

    background-image:
        linear-gradient(
        rgba(90,90,90,.08) 2px,
        transparent 1px),

        linear-gradient(
        90deg,  
        rgba(90,90,90,.08) 2px,
        transparent 1px);

    background-size:40px 40px;

    border: 4px solid Gray;
    border-radius: 16px;
} 

/* =====================
         HERO
===================== */
.hero{
    position:relative;
    overflow:hidden;

    margin-top:80px;
    margin-bottom:80px;

    min-height:400px;

    padding:30px 8%;

    background:#f5f0dc;
    border-radius:30px;
}

.hero-content{
    position:relative;
    z-index:2;
    width:60%;
    min-height:340px;

    display:flex;
    align-items:center;
}

.hero-text{
    max-width:500px;
}

.hero-text p{
    font-size:20px;
}

.hero-image{
    position:absolute;

    top:0;
    right:0;
    bottom:0;

    left:64%;

    background:var(--paper);

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:visible;
}

 .hero-image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.wave{
    position:absolute;

    top:0;
    bottom:0;         
    left:18%;

    width:168px;
    height:100%;

    transform:translateX(-50%);
    display:block;
    z-index:3;
}

/* =====================
         NAV
===================== */
/* nav {
    background: #b9caf0;
    margin: -8px -24px 0 -24px; 
    padding: 20px 24px;
    border-top-left-radius:12px;
    border-top-right-radius:12px;
} */

nav ul{
    display: flex;

    gap: 30px;

    list-style: none;

    background: var(--brown);


    border-radius: 20px;

    border: 4px solid var(--dark);


    padding: 12px 25px;

    box-shadow: 5px 5px 0px var(--dark);
}

nav li{
    font-weight:bold;

    font-family:monospace;

    padding:10px 20px;

    font-family:sans-serif;

    font-weight:bold;

    letter-spacing:2px;
}

nav a{
    text-decoration:none;

    color:var(--dark);
}

nav a:hover {
    text-decoration: underline;
} 

nav .selected{
    background:#8f7d6c;

    color:white;

    padding:8px 18px;

    border-radius:12px;
}

/* Make the dropdown anchor relative to itself */
.dropdown{
    position:relative;
}
.arrow{
    margin-left:6px;
    transition:transform .25s ease;
}

.dropdown:hover .arrow{
    transform:rotate(-180deg);
}

/* Hide the menu by default */
.dropdown-menu{
    display:none;
    position:absolute;

    top:100%;
    left:0;

    min-width:180px;

    list-style:none;
    margin:0;
    padding:0;

    background:var(--brown);
    border-radius:8px;

    z-index:1000;
}

/* Each dropdown item */
.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;
    padding:12px 16px;
    color:var(--dark);
    text-decoration:none;
}

.dropdown-menu li a:hover{
    border-radius:8px;
    background:#9e8a77;
}

/* Show when hovering */
.dropdown:hover .dropdown-menu{
    display:block;
}
.external-links {
    background:none;
    box-shadow: none;
    border: none;

    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 140px;
}

.external-links a {
    display: flex;
}

.external-links img {
    width: 32px;
    height: 32px;
}

/* =====================
         H1-H6
===================== */
h1{
    font-family:IndieFlower;

    font-size:80px;

    line-height:.9;

    color:var(--green);

    margin:0;
}

h2{
    font-family:IndieFlower;
    font-size:45px;
}


/* =====================
         BUTTONS
===================== */
.buttons a{
    display:inline-block;

    letter-spacing:2px;
    font-weight:bold;

    padding:12px 25px;
    margin-left: 36px;

    border:2px solid var(--dark);

    border-radius:8px;

    text-decoration:none;
    background:var(--brown);
    color:var(--dark);
} 

.buttons a:hover {
    transform:translateY(-5px);
    border:2px solid var(--dark);
    background:#8f7d6c;
} 

/* =====================
         SERVICES
===================== */
.services{
    padding:0px 40px 40px 40px;
    text-align:center;
    max-width:1200px;
    width:100%;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr)); /* minmax(0,1fr) = never overflow */
    gap:clamp(8px, 2vw, 25px); /* gap shrinks on narrow screens */
    margin-top:40px;
}

 .card{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start; /* was: center — this is the key change */
    aspect-ratio:1/1;
    background:var(--paper);
    padding:clamp(8px, 3%, 25px);
    border-radius:20px;
    border:2px solid #777;
    min-width:0;
    overflow:hidden;
    box-shadow: 5px 5px 0px var(--dark);
}

.icon{
    width:clamp(80px, 15%, 80px);
    height:clamp(80px, 15%, 80px);
    aspect-ratio:1/1;
    margin-bottom:clamp(4px, 2%, 15px);
    background:var(--cream);
    border-radius:50%;
    font-size:clamp(14px, 6vw, 40px);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0; /* stops the icon from getting squashed if a card runs low on space */
}

 .card h3{
    margin:0 0 2px;
    font-size:clamp(0.65rem, 2vw, 1.1rem);
    line-height:1.2;
    min-height:2.4em; /* reserves room for 2 lines so the paragraph below always starts at the same height */
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.card p{
    margin:0;
    font-size:clamp(0.55rem, 1.5vw, 0.9rem);
    line-height:1.3;
}

/* =====================
         ABOUT
===================== */
.about{
    display:flex;

    align-items:center;

    gap:50px;

    background:#7b815e;

    color:white;
}

.about-image img{
    width:300px;
}

.retro-box {
width: 832px;   /* 208px source * 4 */
height: 384px;  /* 96px source * 4 */
background: url("../images/Textbox1.png") no-repeat;
background-size: 100% 100%;
image-rendering: pixelated;
box-sizing: border-box;
padding: 96px 96px 56px 76px;
font-family: "Bungee", sans-serif;
font-size: 20px;
color: var(--dark);
}

  .retro-box p {
    margin: 0;
  }

  /* ---- controls (demo only, delete when you drop this into your project) ----
  .controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 13px;
    color: #333;
  }
 
  /* ---- the reusable window/textbox component ---- */
  /* .retro-window {
    position: relative;
    width: calc(208px * var(--scale));
    height: calc(96px * var(--scale));
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAANAAAABgCAYAAABsbvwBAAAAAXNSR0IArs4c6QAAA0RJREFUeJzt2jFu21YAx+GXKlfo2E03kCZFyZ5jGMkQoNk6dOrUqUO3FMiQwsfIHsdZoqAHiJAOGX2FCOxEQ1ZIidaftkrp+wDBtkg9Uvb7iSalUoC9PehroMl8VvU11qF8ev+ht98HdDaZz6qPn79VQ/bx87fqGF4EuF/xK+5kPqten78r0/GoLJarfvbqAOr9f3H2xJGIzjpPlG2vzouLy0HHU5uOR2X6+NGhd4N7lL5YPuyy0mQ+qxYXl43L2ibcdDy68XNTYOvr1Mv7OJLV47aN07TdG/va8lw5LtPHj8pkPquSiHYGVMdztfzn1oNvTs6mibstls2Y1n9uWtY0btt6bdsopez1XBmexcVl/B/HD73tTYPpeHR9q22Lqv5+c5I3jbtYrm6s3zbuMfxrye08PXt5fdu8f/1rH+4soMVydX3btd7m99si23Zf01i7YmTY2mJ588ez79Z9e/6qPD17Wd6ev+pt+53OgfbRNnFvM6Hro8z6181l27bfFPDm4xyhhq0thue//v3dfXU8fUZ0ZwE1npw3TOau62w7UnUZ9zbLGba2OOr7D3IE+vLl3942+n93Ss/1lPXxd955+W4yn1V//fZL+fn3PxuXH8t7QDXvBZ2mfS9ldwqolFLqTxtsOqZ4ai48nJbkEyidAjqGj+pAm+RjXJ0uY4uHY7briu42d/pGKhw7AUFAQBCI30j96UdXrBiOr1f9nstHRyDxMDR9z9m9AxIPQ9Xn3HUOBAEBQUBAEBAQBAQEAQFBQEAQEBAEBAQBAUFAQBAQEAQEBAEBQUBAEBAQBAQEAQFBQEAQEBAEBAQBAUFAQBAQEAQEBAEBQUBAEBAQBAQEAQFBQEAQEBAEBAQBAUFAQBAQEAQEBAEBQUBAEBAQBAQEAQFBQEAQEBAEBAQBAUFAQBAQEAQEBAEBQUBAEBAQBAQEAQFBQEAQEBAEBAQBAUFAQBAQEAQEBAEBQUBAENg7oK9Xq373BO5Jn3M3OgKJiKHpe84+TAcQEafMORAEBASBTgEtlqsyHY/ufm/gAKbjUVks9zsVedBlpcl8Vr0+fycijtJiuSovzp6UT+8/dOphXecHTOaz6tZ7BgOxTzwAAAzSf6nV97G2svJJAAAAAElFTkSuQmCC");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }
 
  .retro-window input[type="text"] {
    position: absolute;
    left: 6.7%;
    right: 9.1%;
    top: 19.8%;
    bottom: 10.4%;
    border: none;
    outline: none;
    background: transparent;
    font-family: "Courier New", monospace;
    color: #3a4a7a;
    font-size: calc(7px * var(--scale));
    padding: 0 calc(4px * var(--scale));
  }
 
  .retro-window input[type="text"]::placeholder {
    color: #8a9bc4;
    opacity: 0.9;
  } */ 

/* Highlight the active item inside the Projects dropdown */
.dropdown-menu li.selected a{
    background:#8f7d6c;
    color:white;
    border-radius:8px;
}

/* =====================
    SUBPAGE INTRO
===================== */
/* .subpage-intro{
    margin-top:40px;
}

.subpage-intro h1{
    font-size:60px;

} */


/* =====================
    COMING SOON BANNER
===================== */
.coming-soon{
    display:flex;
    align-items:center;
    gap:20px;

    margin:30px 0 40px 0;
    padding:20px 25px;

    background:var(--paper);
    border:2px dashed var(--brown);
    border-radius:16px;

    box-shadow:5px 5px 0px var(--dark);
}

.coming-soon img{
    width:48px;
    height:48px;
    image-rendering:pixelated;
    flex-shrink:0;
}

.coming-soon p{
    margin:0;
    font-size:18px;
}


















/* =====================
    PROJECT ARCHIVE
===================== */


.project-archive{

    margin-top:50px;

}


.project-archive > h2{

    text-align:center;

    margin-bottom:40px;

}



/* =====================
    PROJECT TYPES
===================== */


.project-types{

    margin:50px 0;

    text-align:center;

}


.type-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}


.type-buttons a{

    display:block;

    padding:12px 22px;

    background:var(--brown);

    color:var(--dark);

    text-decoration:none;

    border:3px solid var(--dark);

    border-radius:20px;

    box-shadow:4px 4px 0 var(--dark);

    font-weight:bold;

    transition:.2s ease;

}


.type-buttons a:hover{

    transform:translateY(-4px);

    background:var(--green);

    color:white;

}





/* =====================
    PROJECT GRID
===================== */


.project-grid{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:40px;

}





/* =====================
    PROJECT ENTRY
===================== */


.project-entry{

    background:var(--paper);

    border:4px solid var(--dark);

    border-radius:20px;

    overflow:hidden;

    box-shadow:8px 8px 0 var(--dark);

}





/* Project image area */

.project-thumbnail{

    height:240px;

    background:var(--cream);

    display:flex;

    justify-content:center;

    align-items:center;

}


.project-thumbnail img{

    max-width:100%;

    max-height:100%;

    object-fit:contain;

    image-rendering:pixelated;

}





/* Project information */

.project-info{

    padding:30px;

}


.project-info h2{

    margin-top:0;

}


.project-info h3{

    font-size:20px;

    line-height:1.3;

}





.project-info h4{

    margin-bottom:10px;

}





/* =====================
    TAGS
===================== */


.project-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:25px;

}



.project-tags span{

    background:var(--brown);

    border:2px solid var(--dark);

    border-radius:15px;

    padding:5px 12px;

    font-family:sans-serif;

    font-size:14px;

}





/* =====================
    BUTTON
===================== */


.project-button{

    display:inline-block;

    padding:12px 25px;

    background:var(--green);

    color:white;

    border:3px solid var(--dark);

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

}


.project-button:hover{

    transform:translateY(-4px);

}





/* =====================
    EMPTY PROJECT SLOT
===================== */


.empty-project{

    min-height:600px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--paper);

}



.new-project{

    width:180px;

    height:180px;

    border-radius:50%;

    background:var(--brown);

    border:5px solid var(--dark);

    box-shadow:8px 8px 0 var(--dark);


    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;


    text-align:center;


    font-size:100px;

    line-height:1;

    color:var(--dark);

}

.new-project:hover{

    transform:translateY(-5px);

}
/* =====================
    Filter TAGS
===================== */
.tag{

    padding:5px 10px;
    border-radius:10px;

    font-weight:bold;

}
.tag.Example{

    background:var(--green);

    color:white;

}
.tag.Games{

    background:var(--brown);

    color:white;

}
.tag.Software{

    background:var(--olive);

    color:white;

}
.tag.Ai{

    background:var(--dark);

    color:white;

}
.tag.Film{

    background:var(--orange);

    color:white;

}
.tag.Photography{

    background:var(--green);

    color:white;

}

/* =====================
    PROJECT FILTER
===================== */


.project-filter{

    text-align:center;

    margin:50px 0;

}



.filter-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

}



.filter-buttons button{


    background:var(--brown);

    color:var(--dark);


    border:3px solid var(--dark);

    border-radius:20px;


    padding:10px 20px;


    font-family:inherit;

    font-weight:bold;


    cursor:pointer;


    box-shadow:4px 4px 0 var(--dark);


    transition:.2s ease;

}



.filter-buttons button:hover,
.filter-buttons button.active{


    background:var(--green);

    color:white;


    transform:translateY(-3px);

}














/* =====================
    PHOTO GALLERY
===================== */
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:35px;
    max-width:900px;
    margin:30px auto 50px auto;
}

.gallery img{
    width:100%;
    height:auto;
    display:block;
    image-rendering:pixelated;
}

/* =====================
         PROJECTS - Homepage
===================== */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    max-width: 700px;
    margin: 0 auto;
}


.project {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    image-rendering:pixelated;
    
}

.projects h2 {
    text-align:center;
}

.project:hover {
    transform: translateY(-4px) scale(1.02);
}

.project img {
    width: 100%;
    height: auto;
    display: block;
}

.project-title {
    position: absolute;
    bottom: 20%;
    left: 50%;
    font-family: 'Segoe Print', 'Comic Sans MS', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.tilt-left {
  transform: translateX(-50%) rotate(-20deg);
  bottom: 32%; /* nudge up to compensate for the downward dip */
}

.tilt-right {
  transform: translateX(-50%) rotate(18deg);
  bottom: 24%; /* this one's already working, leave as-is */
}

/* =====================
         FOOTER
===================== */
footer{
    position:relative;

    overflow:hidden;

    margin:0 -24px -24px -24px;
    width:calc(100% + 48px);

    height:288px;

    /* background:#b9caf0; */

    color:#dadada;
    border-bottom-left-radius:12px;
    border-bottom-right-radius:12px;
}

/* Ground */
.ground{
    position:absolute;

    left:0;
    right:0;
    bottom:54px;

    height:70px;

    background:url("../images/ground.png") repeat-x bottom;
    background-size:auto 70px;
    image-rendering:pixelated;

    z-index:1;
}

/* Trees */
.tree{
    position:absolute;
    bottom:45px;

    height:auto;
    width:64px;

    image-rendering:pixelated;

    z-index:2;
}

/* Bushes */
.bush{
    position:absolute;
    bottom:45px;

    height:45px;
    width:auto;

    image-rendering:pixelated;

    z-index:3;
}

/* Tree placement */
.tree-left{
    left:5%;
    bottom:52px;
}

.tree-middle{
    left:40%;
    bottom:60px;
}

.tree-right{
    right:2%;
    bottom:98px;
}

/* Bush placement */

.bush1{
    left:24%;
    bottom:82px;
}

.bush2{
    left:66%;
    bottom:56px;
}

.bush3{
    right:18%;
    bottom:62px;
}

/* Copyright bar */
footer h3{
    position:absolute;

    left:0;
    right:0;
    bottom:0;

    margin:0;

    padding:14px 0;

    background:#4c4c4c;

    text-align:center;

    font-weight:normal;

    z-index:5;

}


/* =====================
    CHARACTER SHEET
===================== */

.character-sheet{

    background:var(--paper);

    border:4px solid var(--dark);

    border-radius:25px;

    padding:30px;

    box-shadow:8px 8px 0 var(--dark);

}


.profile-card{

    display:flex;

    gap:40px;

    align-items:center;

}


.profile-card img{

    width:220px;

    height:220px;

    object-fit:cover;

    border-radius:20px;

    border:4px solid var(--dark);

}


.badges span{

    display:inline-block;

    background:var(--brown);

    padding:8px 15px;

    border-radius:15px;

    margin:5px;

    border:2px solid var(--dark);

}


/* STATS */

.stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

margin-top:30px;

}


.stat-box{

background:var(--cream);

border:3px solid var(--dark);

border-radius:15px;

padding:15px;

text-align:center;

}


/* BARS */


.attributes{

display:grid;

gap:20px;

}


.bar{

height:25px;

background:#ddd;

border:3px solid var(--dark);

border-radius:20px;

overflow:hidden;

}


.bar span{

display:block;

height:100%;

background:var(--green);

}


/* SKILLS */

.skill-tree,
.inventory,
.achievement-list{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}


.skill,
.item,
.achievement{

background:var(--paper);

padding:25px;

border-radius:20px;

border:3px solid var(--dark);

box-shadow:5px 5px 0 var(--dark);

}


/* PAPER */

.paper-box{

background:#f7f1dc;

padding:30px;

border-radius:20px;

border:2px dashed var(--brown);

}

/* =====================
        QUEST LOG
===================== */


.quest-log{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:50px;

}



.quest{

    background:var(--paper);

    border:3px solid var(--dark);

    border-radius:20px;

    padding:25px;

    box-shadow:6px 6px 0 var(--dark);

    position:relative;

}



.quest-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:10px;

    margin-bottom:15px;

}



.quest-header h3{

    margin:0;

}



.quest-header span,
.quest-status{

    background:var(--green);

    color:white;

    padding:5px 12px;

    border-radius:12px;

    border:2px solid var(--dark);

    font-size:14px;

}



.main-quest{

    grid-column:span 2;

    background:#efe5c8;

}



.quest-progress{

    height:20px;

    background:#ddd;

    border:3px solid var(--dark);

    border-radius:15px;

    overflow:hidden;

    margin-top:20px;

}



.quest-progress span{

    display:block;

    height:100%;

    background:var(--green);

}

/* =====================
        CONTACT PAGE
===================== */


.contact-intro p{

    font-size:20px;

    max-width:600px;

    margin:20px auto;

}



/* Main Contact Box */


.contact-card{

    background:var(--paper);

    border:4px solid var(--dark);

    border-radius:25px;

    padding:35px;

    box-shadow:8px 8px 0 var(--dark);

}



.contact-card h2{

    text-align:center;

    margin-top:0;

}
.contact-card p {
    text-align:center;
}




.contact-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}



.contact-links a,
.contact-links div{

    display:flex;

    align-items:center;

    gap:20px;


    padding:20px;


    background:var(--cream);

    border:3px solid var(--dark);

    border-radius:15px;


    text-decoration:none;

    color:var(--dark);


    box-shadow:4px 4px 0 var(--dark);

    transition:.2s ease;

}



.contact-links a:hover{

    transform:translateY(-5px);

    background:var(--brown);

}



.contact-links h3{

    margin:0;

}



.contact-links p{
    margin:5px 0 0;

}




.contact-message{

    margin-top:50px;

    text-align:center;

    padding:30px;


    border:3px dashed var(--brown);

    border-radius:20px;

    background:#f7f1dc;

}

/* =====================
         MEDIA
===================== */
/* 
@media(max-width:800px){


.hero-content,
.about{


flex-direction:column;


}



.cards,
.project-grid{


grid-template-columns:1fr;


}



h1{

font-size:55px;

}


footer{
    height:170px;
}


.tree{
    height:100px;
}


.bush{
    height:35px;
}


.ground{
    height:55px;
    background-size:auto 55px;
}

}  */

/* @media(max-width:800px){

    .project-grid{

        grid-template-columns:1fr;

    }


    .new-project{

        width:140px;

        height:140px;

        font-size:80px;

    }

} */
