
body{
    background-color: #f2fcff; /* #6796c2 #73d5d9*/
}

html{scroll-behavior: smooth;}

*{margin:0px;
  padding:0px;
  box-sizing: border-box;

}

h1{
    z-index: 1;
    color: white;
    justify-content: center;
    border-color: #f2fcff;
    
}

.navigation-bar{
    background-color:#b4d2db ; /*#b4d2db #6796c2*/
    margin:0px;
    z-index: 1;
    position:fixed;
    top:0;
    width:100%;
    padding: 30px;
    
}
.title{
    box-sizing: border-box;
    text-align: center;
    font-size: x-large;

}

.nav-bar-links{
    box-sizing: border-box;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 10px;
    font-size: 20px; 
}

a{
    padding-left: 20px;
    padding-right: 20px;
    color: white;

}


.nav-bar-links li{
    display: inline-block;

}

a{text-decoration: none;}





.image-container img{
    width: 100%;
    height: 800px; /* can change this back to auto later */
    display:block;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
    /* Maybe add a stick position here - defo need to go back on codeacademy to figure out */

}

.artists-paintings-title{
    width: 100%;
    padding: 20px;
    background-color:#f2fcff;
    font-size: larger;

}

.paintings-box{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    background-color: #f2fcff;
    padding: 20px;
}
 
.image-box{
    width: 23%; /* Each image takes up around a quarter of the container */
    aspect-ratio: 1 / 1; /* Ensures square shape */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: black;
    text-align: center;
}

.about-us-container{
    display:flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color:#dcedf2 ; /* #dcedf2 #a9c6d6*/
    
}

.about-us-image-container{
    flex: 1;
    display: flex;
    justify-content: center; /* Centers the image when resizing */
}



@media (max-width: 600px) {
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }

    .about-us-container img {
        width: 50%; /* Makes the image take full width on small screens */
        padding-left: 50%;
        padding-right: 50%;
    }
}

    
.about-us-text{
    padding:20px;
    font-size: 1.2rem;
    flex: 1; /* allows it to take up remaining space*/
}


#imageforaboutus{
    max-width: 50%;
    width: 75%;
    height: auto;
    border-radius:10px;
    padding-right: 2%;
    padding-left: auto;
}
@media (max-width: 600px) {
    .image.box{
        width: 48%;
    }
}

@media (max-width: 400px) {
    .image-box {
        width: 100%;
    }
}


footer{
    position: relative;
    bottom: 0;
    width: 100%;
    background-color: #6796c2;
    height: 100px;
    align-items: center;
    text-align: center;
    padding:10px;
}

.footer-links{
    box-sizing: border-box;
    text-align: center;
    letter-spacing: 2px;;
}

a:hover{color:rgb(83, 103, 216);
    text-decoration: underline;
}

#Contact{
    color: white;
}

