@charset "utf-8";
/* CSS Document */

.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

.header {
    position: relative;
    display: flex;
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1rem;
}
.logo {
    font-family:Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
    font-size: 3rem;
    color: #000000;
    font-weight: normal;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
}
nav{
            display: flex;
            gap: 3rem;
            align-items:flex-start;
            float: right;
        }
.nav-link {
            text-decoration: none;
            color: #8b6f47;
            font-size: 1rem;
            font-weight: 500;
            font-family: Helvetica;
            transition: color 0.3s ease;	
 }
.nav-link:hover {
            color: #6d5436;
}

.sign-in-btn {
            background: #3c0008;
            color: white;
            padding: 8px 35px;
            border: none;
            border-radius: 25px;
            font-size: 10px;
            font-weight: 100;
            letter-spacing: 1px;
            font-style: italic;
            font-style: thin;
            cursor: pointer;
            transition: background 0.3s ease;
}
.sign-in-btn:hover {
    background: #3c0008;
}


.post-container{
	margin-top: 5rem;
	padding-top: 5rem;
	padding-bottom: 7rem;
	position: relative;
	max-width: 100%;
	background: whitesmoke;
	
	
}

.post{
	        position: relative;
			max-width: 100%;
			max-height: 100%;
			padding: 0.5rem;
	        justify-self: center;
	        margin-bottom: 6rem;
	      
	
	
}

.post-layout{
	 position: relative;
			max-width: 100%;
			max-height: 100%;
            text-decoration: none;
            display: flex;
			padding: 0.5rem;
	
}

.post-layout img{
	

            max-width: 100%;
	        width: 30rem;
            height: 40em;
	        border-radius: 2px;
            object-fit:cover;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .post-layout:hover img {
            transform: translateY(-0.15rem);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
.artist-name{
	position: relative;
	text-align: center;
	margin-top: 1.6rem;
	font-size: 1.5rem;
	
}

.post-title{
	position: relative;
	text-align: center;
	margin-top: 0.6rem;
	font-style: italic;
	font-size: 1.5rem;
	
}
}

