/* ____________colors____________

mattpink: #E9D3E7;
hot-pink: #FF0CAE;
lilac: #DEDEFF;
pastellblue: #B5CBFF;
mint: #CCF6FF;
yellow: #FFFFD6;
darker yellow for readability: #ffe28a;

*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #000;
}

img {
    max-width: 100%;
}

#contact {
    margin: 150px auto;
    text-align: center;
}

/* ____________Fonts____________ */

.italic {
    font-style: italic;
}

h1 {
    display: none;
}


h2, .chapter {
    font-size: 35px;
    font-weight: normal;
}

h3, .sub-text, #contact .content-text {
    font-size: 19px;
}

h3 {
    margin-top: 0.5em;
    font-weight: normal;
}

.subline, .menu-item {
    font-style: italic;
    font-size: 18px;
    color: #333;
}

a.cta {
    color: #FF0CAE;
}

a.subtle {
    color: #000;
    text-decoration: none;
}



/* ____________Container Elements____________ */

.first-colored-box {
    border-radius: 35px 35px 0 0;
}

.last-colored-box {
    border-radius: 0 0 35px 35px;
}

.gallery {
    margin: 2em auto;
    display: grid;
    gap: 10px;
}

  
  .normal-width {
    padding: 2em;
  }
  
  .text-image-container img {
    margin: 3.5em 0 .25em;
  }
  
  
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }


/* ____________Content Elements____________ */

#intro {
    background-color: #E9D3E7;
}

#webdesigns, #webdesigns .menu, #webdesigns h2 {
    background-color: #DEDEFF;
}

#branddesigns, #branddesigns .menu, #branddesigns h2 {
    background-color: #B5CBFF;
}

#uiux, #uiux .menu, #uiux h2 {
    background-color: #CCF6FF;
}

#digitalart, #digitalart .menu, #digitalart h2 {
    background-color: #FFFFD6;
}

.column-1 {
    padding: 2em 0;
}

.column-1 .narrow-box {
    padding: 1em 0 0;
}

.column-2 {
    margin: 0 auto;
    padding: 0 0 2em 0;
}

/* ____________Gradient Boxes____________ */

.gradient-1 {
    background: linear-gradient(#E9D3E7, #DEDEFF);
}

.gradient-2 {
    background: linear-gradient(#DEDEFF, #B5CBFF);
}

.gradient-3 {
    background: linear-gradient(#B5CBFF, #CCF6FF);
}

.gradient-4 {
    background: linear-gradient(#CCF6FF, #FFFFD6);
}




/* ____________Header____________ */

header#top {
    max-width: 75%;
    margin: 0 auto;
    
    margin-bottom: -75px;

    display: flex;    
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;

    
}

header .mira-img {
    width: 50%;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
  }
  
header .mira-desc {
    width: 50%;
    padding: 10px;
    margin: 2em auto 1em;
    width: fit-content;
}

.font-1 {
    font-size: 25px;
    font-style: italic;
}

.font-2 {
    font-size: 16px;
}


/* ____________Sidebar Navigation____________ */

nav.section-nav.desktop{
    display: none;
}

.section-nav-2.small-devices {
    display: none;
}

.section-nav-2.small-devices.helper {
    display: none;
}



