/* css reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*reset end */

/*my style */  


html {
    box-sizing: border-box;
 }
 *, *::before, *::after {
    box-sizing: inherit;
    padding: 0;
    margin: 0;
 }

 body{

    background-image: url('images/background-black.jpg');
    background-size: cover;
    font-family: 'Titillium Web',sans-serif;
    

 }

 /*header style */

 header {

    
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #00000000;
    margin-top: 18px;
    

 }


header img {

    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-left: 60px;
}

header p {
   
    color: #ffffff;
    margin-left: 10px;

}


header nav ul {

    list-style: none;
    display: flex;
    gap: 20px;

}

header nav ul li {

    text-transform: uppercase;
    font-size: 0.5em;
    color: #ffffff;
    padding-right: 40px;
    
}

header nav a{

    color: #ffffff;
    text-decoration: none;

}

header nav a:hover {

    color: #ffbb00;

}

/* main style */

main{

    max-width: 800px;
    margin-right: 80px;
    margin-left: 80px;
    margin-top: 50px;
    background-color: rgba(0, 0, 0, 0.358);
    color: rgb(255, 255, 255);
    padding-top: 20px;
}

  

main h1 {

    
    
    margin-left: 10px;
    font-size: 50px;
    font-weight: 900;
    font-style: italic;
    line-height: 0.8em;

}

main h1:last-of-type{

    color: #ffbb00;
    margin-top: 10px;
    margin-bottom: 70px;
    margin-left: 80px;
    text-transform: uppercase;
    font-size: 70px;
   

}

main p{
    
    
    font-size: 1.8em;
    line-height: 1.5;
    padding-left: 10px;
    padding-right: 10px;
    letter-spacing: 0.5;
   
}

main p+p{

    margin-top: 30px;

}

main p:last-of-type{
    margin-top: 50px;
}


main h2{

    
    text-align: center;
    color: #ffbb00;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-right: 30px;
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 900;
    font-style: italic;
    line-height: 0.8em;
    

}

/* gallery style */

.gallery{
   
    padding-left: 10px;
    padding-right: 10px;
}

.gallery img{
    
    width: 100%;
    height: auto;

}

.gallery img+img{
    padding-top: 80px;
}
/*gallery interact*/

.gallery img {
    transition: transform 0.3s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.2);
}

/*media queies*/

@media (min-width: 700px){
    .gallery{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 1.2em;
    }

    body{
        background-size: cover;
        background-position: center; 
        background-attachment: fixed;
    }

   
    
}

@media (min-width: 1200px){
    .gallery{
        width: 1200px;
        grid-template-columns: repeat(3, 1fr);
    }
    
}
    





/* footer style */

footer{

   
    font-weight: 400;
    font-style: normal;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px;
    padding-bottom: 30px;
    margin-top: 200px;
    margin-bottom: 30px;
    background-color: #0000003e;
    
}

footer h3{
   
    color: #ffbb00;
    font-size: 30px;
    margin-left: 80px;
    margin-right: 50px;
    text-transform: uppercase;
    
}

footer nav ul{

    display: flex;
    list-style: none;
    justify-content: space-around;
    gap: 50px;

}


footer nav a{
    text-decoration: none;
    color: #ffffff;
    font-size: 25px;
    margin-right: 100px;
    
}

footer nav a:hover{
    color: #ffbb00;
}



