/* Images span the entire site */
body, html{
    margin:0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* Header links preview horizontally */ 
.main-nav ul {
    list-style-type: none;
    display:flex;
    justify-content: center;
}
/* Spacing for links */
.main-nav ul li a {
    display: inline-block;
    padding:10px 20px;
    text-decoration: none;
}

.main-nav li a:hover {
    color:green;
}

h3 {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:brown;
}

.headercontain{
    width:auto;
    height:auto;
    margin-bottom: 450px;
}

.headercontain img{
    width:100%;
    height:auto;
    object-fit: contain;
}

.horizontalSection {
    display:flex;
    flex-wrap: wrap;
    margin-bottom: 200px;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.horizontalAlign {
    display:flex;
    justify-content: center;
}

/* About me Section */
.aboutmeSquareIcon {
    width: 500px;
    height: 550px;
    border-radius: 10px;
    background-color: blue;
}

.aboutmeSquareIcon img{
    width:500px;
    height:auto;
    object-fit: contain;
}

.aboutmeSquareText {
    display:flex;
    width: 700px;
    height: 550px;
    margin-right: 40px;
    margin-left: 40px;
}

.aboutmeTextHI{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 50px;;
}

.textSmaller{
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size:40px;
}

/* Explore Links Section */
.exploreLinkIcon{
    width:400px;
    height:500px;
    display:inline-block;
    transition: transform 0.3s ease;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 40px;
    margin-bottom: 120px;
}

.exploreLinkIcon:hover {
    transform: scale(1.1);
}

.exploreLinkIconCenter{
    display:flex;
    justify-content: center;
}

.imgIcon {
    width:400px;
    height:500px;
    margin:auto;
}

.artIcons{
    width:400px;
    height:500px;
    display:inline-block;
    transition: transform 0.3s ease;
    justify-content: center;
    align-items: center;
    align-content: center;
    margin: 40px;
}

.artIcons:hover {
    transform: scale(1.1);
}



/* Footer INFO */
footer{
    display: flex;
    justify-content: center;
    margin-top: 250px;
}

.scroll-element {
    transition: opacity 0.7s ease-in-out; 
  }
  
  .fade-out {
    opacity: 0;
  }
  
  .fade-in {
    opacity: 1;
  }


