*{ 
    margin:0;
    padding:0;

}
body{ 
    background: radial-gradient(#ae9cb0 ,rgb(97, 59, 106));
}

section{
    height: 100vh;
}
nav{
    height: 80px;
    background: #231717;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: "Irish Grover", serif;
    font-weight: 400;
    font-style: normal;
      
}
.nav-link{
    text-decoration: none;
    font-size: 27px;
}
.photos{
    margin-top: 16px;
    display: flex;
    justify-content: space-around;
}

.main-photos{
    width: 250px;
    height: 350px;
}

.main-title{
    font-family: "Cinzel", serif;
    font-size: 80px;
    text-align:center;
    background: #330000;
background: linear-gradient(to right, #330000 0%, #6600CC 50%, #6600CC 50%, #6600CC 50%, #6600CC 50%, #330000 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}  
@media (max-width: 600px){
    .photos
        {
            display: flex;
            flex-direction: column; 
            justify-content: center;
            align-items: center; 
        
        
       }
       .main-photos{
        padding-top:10px;
       }
       .main-title{
        font-size:74px;
       }
    }   
