/*   */
@import "files/basic_style.css";

/*  */
@import "files/layout_1col.css";
/* @import "files/layout_2col_left.css";  */
/*@import "files/layout_2col_right.css";*/

/*   */
/* @import "files/color_08_orange.css";  */

/*      */
* {
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #19310e 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/*     */
body.scrolled-25 {
    background: linear-gradient(to bottom, #ffffff 0%, #395325 25%, #19310e 100%);
}

body.scrolled-50 {
    background: linear-gradient(to bottom, #ffffff 0%, #395325 50%, #19310e 100%);
}

body.scrolled-75 {
    background: linear-gradient(to bottom, #ffffff 0%, #395325 75%, #19310e 100%);
}

body.scrolled-100 {
    background: linear-gradient(to bottom, #ffffff 0%, #19310e 100%);
}


#topblock {
    display: flex;
    justify-content: flex-end;
    padding: 10px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #ddd;
    backdrop-filter: blur(10px);
}


#donntu a {
    padding: 8px 15px;
    background-color: #19310e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 14px;
    white-space: nowrap;
}

#donntu a:hover {
    background-color: #4a5a2e;
    color: white !important;
}

#donntu a:visited {
    color: white !important;
}

#header {
    display: flex;
    padding: 15px;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    align-items: stretch;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

#photo-section {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 15px;
    width: 220px;
    flex-shrink: 0;
    min-height: 350px;
}
/*     */
/* 1.      */
.clickable-item {
    cursor: pointer;
    color: #333 !important;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0;
}

.clickable-item:hover {
    background-color: rgba(107, 132, 67, 0.1);
    text-decoration: underline;
    transform: translateX(5px);
    color: #19310e !important;
}

.achievement-link {
    color: #333 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 3px;
}

.achievement-link:hover {
    background-color: rgba(107, 132, 67, 0.1);
    text-decoration: underline;
    color: #19310e !important;
}
/*      */
#courseModal .modal-content {
    background: transparent;
    box-shadow: none;
    max-width: 95%;
}

#courseModal .close {
    color: white;
    font-size: 35px;
    top: -50px;
    right: 0;
    z-index: 1002;
}

#courseModal .close:hover {
    color: #ccc;
}
.skills-column ol {
    list-style: none;
    padding-left: 0;
}

.skills-column li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.skills-column li::before {
       font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    color: #395325;

}




/*      */
.section-content {
    text-align: justify;
    line-height: 1.6;
}

/*     */
.section-content ol,
.section-content ul {
    text-align: justify;
}

/*    */
.section-content li {
    text-align: justify;
    margin-bottom: 10px;
    line-height: 1.5;
}

/*      */
.references-list li {
    text-align: justify;
    margin-bottom: 15px;
    line-height: 1.5;
}

/*    -      */
@media (max-width: 768px) {
    .section-content,
    .section-content ol,
    .section-content ul,
    .section-content li,
    .references-list li {
        text-align: left;
    }
}


/*      */
.skills-column:nth-child(1) li:nth-child(-n+9)::before { content: "\f06c"; } /*  */
.skills-column:nth-child(1) li:nth-child(10)::before { content: "\f06c"; } /*  */

.skills-column:nth-child(2) li:nth-child(-n+10)::before { content: "\f06c"; } /* IT- */
.skills-column:nth-child(2) li:nth-child(n+11)::before { content: "\f06c"; } /*  */


.media-container {
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-container,
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.photo-container.active,
.video-container.active {
    display: flex;
}

.media-content {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.media-content:hover {
    transform: scale(1.02);
}

.zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255);
    color: white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.zoom-icon:hover {
    background: rgba(0,0,0,0.9);
}

.media-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
}

.media-arrow {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.media-arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.media-indicator {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: white;
}

.indicator:hover {
    background: rgba(255,255,255,0.6);
}

/*   */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: auto;
    max-width: 95%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    border: none;
}

.modal .close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .close:hover {
    background: rgba(0,0,0,0.8);
    color: #ccc;
}
#modalMediaContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#info-section {
    background-color: #e0e0e0;
    border-radius: 10px;
    padding: 0;
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}



.info-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: white !important; /*   */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8); /*     */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}#info-section {
    background-color: #e0e0e0; /*    */
    border-radius: 10px;
    padding: 0;
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.info-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg_top1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.info-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    color: white !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*       info-content */
.info-content .hdr {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    margin: 8px 0;
}

.info-content .hdr a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.info-content .hdr a:hover {
    color: #f0f0f0 !important;
    text-decoration: underline;
}

/*     */
.info-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
    border-radius: 10px;
}
.name-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 20px;
    padding: 0 5%;
    position: relative;
    min-height: 60px;
}

.name-text {
    font-size: 24px;
    font-weight: bold;
    color: #4a4a4a;
    text-align: center;
    padding: 10px 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}



#menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 5%;
    flex-wrap: wrap;
    background: transparent !important;
    border: none !important;
}

.menu-btn {
    padding: 12px 20px;
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    backdrop-filter: blur(10px);
}

.menu-btn:hover {
    background-color: #19310e !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(90, 112, 56, 0.3);
    border-color: #19310e;
}

/*  " " -   */
.button.colorfix.menu-btn {
    background-color: #19310e !important;
    color: white !important;
    border-color: #19310e;
}
/* 1.   -  ,        */
#menub {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 5%;
    flex-wrap: wrap;
    background: transparent !important;
    border: none !important;
}

.mitemb {
    padding: 12px 20px;
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    backdrop-filter: blur(10px);
}

.mitemb:hover {
    background-color: white !important;
    color: #19310e !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
    border-color: white;
}
#main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 5%;
}

.content-block {
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.content-block:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.95);
}

.content-block:nth-child(even) {
    background-color: rgba(240, 240, 240, 0.95);
}


.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


.content-block h3 {
    margin-top: 0;
    border-bottom: 2px solid #4a4a4a;
    padding-bottom: 10px;
    font-size: 1.3em;
}

.content-block.full-width {
    width: 100%;
}

/*   */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.skills-column h4 {
    margin: 15px 0 10px 0;
    color: #4a4a4a;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    font-size: 1.1em;
}

#contact-info {
    text-align: center;
    padding: 20px;
     background-image: url('../images/bg_top1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    color: white;
    border-radius: 15px;
}

#contact-info a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

#contact-info a:hover {
    color: #395325;
    text-decoration: underline;
}



/*    */
@media (max-width: 1024px) {
    #header {
        margin: 10px;
        padding: 10px;
    }
    
    .decorative-left,
    .decorative-right {
        width: 80px;
        height: 60px;
    }
    
    .name-text {
        font-size: 20px;
    }
    
    .skills-container {
        gap: 20px;
    }
}

/*     */
@media (max-width: 768px) {
    body {
        background: linear-gradient(to bottom, #ffffff 0%, #395325 100%);
    }
    
    #topblock {
        padding: 10px;
        justify-content: center;
    }
    
    #donntu {
        justify-content: center;
    }
    
    #donntu a {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    #header {
        flex-direction: column;
        align-items: center;
        margin: 10px;
        gap: 15px;
    }
    
    #photo-section {
        width: 100%;
        max-width: 250px;
        min-height: 320px;
    }
    
    #info-section {
        width: 100%;
        min-height: auto;
    }
    
    .info-content {
        padding: 15px;
    }
    
    .info-content .hdr {
        font-size: 0.9em;
        margin: 8px 0;
    }
    
    .name-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }
    
    .decorative-left,
    .decorative-right {
        display: none;
    }
    
    .name-text {
        font-size: 18px;
        padding: 8px 15px;
    }
    
    #menu {
        margin: 15px 10px;
        gap: 8px;
    }
    
    .menu-btn {
        min-width: 120px;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    #main-content {
        margin: 15px 10px;
        gap: 15px;
		color: #395325;

    }
    
    .content-block {
        padding: 15px;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .skills-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    #menub {
        margin: 15px 10px;
    }
    
    .mitemb {
        min-width: 100px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

#h2 { color: white;
}
/*      */
@media (max-width: 480px) {
    .name-text {
        font-size: 16px;
    }
    
    .menu-btn {
        min-width: 100%;
        margin: 2px 0;
    }
    
    #donntu {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    #donntu a {
        width: 100%;
        text-align: center;
        margin: 2px 0;
    }
    
    .info-content .hdr {
        font-size: 0.8em;
        text-align: center;
    }
    
    .content-block h3 {
        font-size: 1.1em;
        text-align: center;
    }
    
    .media-controls {
        gap: 10px;
    }
    
    .media-arrow {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }
}

/*     */
@media (max-height: 600px) and (orientation: landscape) {
    #header {
        flex-direction: row;
    }
    
    #photo-section {
        width: 180px;
        min-height: 280px;
    }
}

.content-container {
    display: flex;
    align-items: center;
}

.secblock-img {
    width: 100%;
}

.firblock {
    width: 70%;
}

/*     1100px */
@media (max-width: 1100px) {
    .content-container {
        display: block;
    }

    .content-container img {
        margin-top: 20px;
    }

    .secblock {
        text-align: center;
    }

    .secblock-img {
        width: 60%;
    }

    .firblock {
        width: 100%;
    }
}











/*     */

/*  */
.creative-intro {
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(107, 132, 67, 0.1) 100%);
}

.intro-header h2 {
    font-size: 2.2em;
    color: #395325;
    margin-bottom: 10px;
    border-bottom: none;
}

.subtitle {
    font-size: 1.3em;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/*   */
.section-header h3 {
    color: #395325;
    border-bottom: 2px solid #395325;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
}

/*    */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.gallery-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.artwork {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 3px solid rgba(107, 132, 67, 0.3);
    transition: all 0.3s ease;
}

.artwork:hover {
    border-color: #395325;
    box-shadow: 0 8px 25px rgba(107, 132, 67, 0.3);
}

/*    */
.craft-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px)); /*  300px  1fr */
    justify-content: center; /*    */
    justify-items: center; /*     */
    gap: 25px;
    margin: 30px 0;
}


.craft-item {
    text-align: center;
 width: 300px;
    transition: transform 0.3s ease;
    position: relative; /*      */
    cursor: pointer; /*     */
}

.craft-item:hover {
    transform: translateY(-5px);
}

.craftwork {
    width: 100%;
    height: 225px;
    object-fit: contain; /*  cover  contain    */
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    border: 2px solid rgba(107, 132, 67, 0.2);
    transition: all 0.3s ease;
    background-color: #f9f9f9; /*      */
}

.craftwork:hover {
    border-color: #395325;
    box-shadow: 0 6px 20px rgba(107, 132, 67, 0.25);
}

/*      */
.craft-item .zoom-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(57, 83, 37, 0.8);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.craft-item:hover .zoom-icon {
    opacity: 1;
}

.craft-item .zoom-icon:hover {
    background: rgba(57, 83, 37, 1);
    transform: scale(1.1);
}

/*    */
.image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #395325;
    font-weight: 500;
}
/*    */
.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.book-category {
    padding: 20px;
    background: rgba(107, 132, 67, 0.05);
    border-radius: 12px;
    border-left: 4px solid #395325;
    transition: all 0.3s ease;
}

.book-category:hover {
    background: rgba(107, 132, 67, 0.1);
    transform: translateX(5px);
}

.book-category h4 {
    color: #395325;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: none;
}

.book-category p {
    line-height: 1.6;
    margin: 0;
}

/*  */
.poems-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.poem {
    padding: 25px;
    background: linear-gradient(135deg, #395325) 0%, rgba(255,255,255,0.8) 100%);
    border-radius: 15px;
    border: 1px solid rgba(107, 132, 67, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.poem:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 132, 67, 0.15);
    border-color: rgba(107, 132, 67, 0.4);
}

.poem-title {
    font-size: 1.2em;
    color: #395325;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(107, 132, 67, 0.3);
    padding-bottom: 8px;
}

.poem-content {
    font-style: italic;
    line-height: 1.8;
    text-align: center;
    color: #4a4a4a;
}

.poem-content p {
   	 text-align: center;
}

/*  */
.conclusion-text {
    font-size: 1.2em;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
    color: #4a4a4a;
    
    margin: 0 auto;
    padding: 20px;
}

/*     */
.references-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.ref-link {
    padding: 12px 20px;
    background-color: #395325;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid #19310e;
    font-weight: 500;
}

.ref-link:hover {
    background-color: #19310e;
	 color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 132, 67, 0.4);
}
/*  "" -   */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background: #4a4a4a;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

#back-to-top:hover {
    background: #19310e;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(107, 132, 67, 0.4);
}

#back-to-top.show {
    display: block !important;
}

/*    */
@media (max-width: 768px) {
    #back-to-top {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    #back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}
/*     */
@media (max-width: 768px) {
    .intro-header h2 {
        font-size: 1.8em;
    }
    
    .subtitle {
        font-size: 1.1em;
    }
    
    .gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .craft-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .books-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .poems-container {
        grid-template-columns: 1fr;
        gap: 20px;
		
    }
    
    .references-links {
        flex-direction: column;
        align-items: center;
    }
    
    .ref-link {
        width: 200px;
        text-align: center;
    }
    
    .artwork,
    .craftwork {
        height: 250px;
    }
	
	
}


@media (max-width: 480px) {
    .intro-header h2 {
        font-size: 1.5em;
    }
    
    .section-header h3 {
        font-size: 1.3em;
    }
    
    .artwork,
    .craftwork {
        height: 200px;
    }
    
    .poem {
        padding: 15px;
		text-align: center;
    }
}

