@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(images/image\ 3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

.header {
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    position: fixed;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-weight: 600;
}

.pcbar {
    color: #ededed;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    margin-left: 35px;
    list-style-type: none;
    text-decoration: none;
}

.pcbar li{
    height: 50px;
}

.pcbar a{
    font-size: 15px;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.pcbar :hover,
.pcbar .active {
    color: aquamarine;
}

.logo {
    flex: 1;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: clamp(1rem, 2vw, 2.5rem);
    color: #ededed;
    text-decoration: none;
}

.logo img{
    width: clamp(40px, 6vw, 60px);
    margin-right: 10px;
    mix-blend-mode: lighten;
}

main {
    display: flex;
    min-height: 100vh;
}

.wrapper {
    margin: 150px auto;
    width: 80%;
}

.wrapper h1 {
    text-align: center;
    color: #ededed;
    border: 3px solid white;
    background: black;
    border-radius: 50px;
}

.wrapper h2 {
   font-size: 40px;
   text-align: center;
   color: black;
   -webkit-text-fill-color: aqua;
   -webkit-text-stroke-width: 0.5px;
}

.wrapper h1:hover,
.wrapper h1.active {
    color: aquamarine;
}

.wrapper h2:hover,
.wrapper h2.active {
    color: aquamarine;
}

.wrapper img {
    display: block;
    margin: 30px auto;
    width: clamp(300px, 100%, 850px);
    border: 3px solid #ededed;
    border-radius: 15px;
}

img {
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
    width: 55%;
    border: 3px solid #ededed;
    border-radius: 15px;
    margin-right: 50%;
}

.text {
    font-size: 3vmin;
    color: #ededed;
}

.text h2{
    font-size: 7vmin;

}

.text p {
    text-align: center;
    font-size: 4vmin;
    color: #ededed;
    margin-bottom: -40px;
}

.word {
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 90%;
    width: 90%;
    padding: 20px;
    border: 2px solid black;
    margin: auto;
    margin-top: 50px;
    background-color:rgba(0, 0, 0, 0.5) ;
    box-shadow: inset -5px -5 px rgba(0, 0, 0, 0.5);
    border-radius: 25px;
}

.word p {
    color: whitesmoke;
    font-size: 100%;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 350px;
    z-index: 999;
    background-color: rgba(127, 255, 212, 0.478);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar a {
    font-size: clamp(10px, 3vw, 20px);
    color: white;
    padding-inline: 15px;
    width: 100%;
    line-height: 70px;
    text-decoration: none;
}

.sidebar a:hover,
.sidebar a.active {
    color: aquamarine;
    width:500% ;
    background-color: rgba(0, 0, 0, 0.491); 
    padding: auto; 
    border-radius: 100px;
}

.Photos{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px,1fr));
    justify-content: center;
}

.box {
    width: 350px;
    margin: 0 10px;
    padding: 10px;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.1);
    transition: 2s;
}

.box img {
    width: 100%;
    border-radius: 5px;
}

.box :hover {
    transform: scale(2);
    z-index: 2;
}

@media(max-width: 1200px){
    .hideOnMobile{
        display: none;
    }

    img {
        width: 85%;
        float: left;
        border: 3px solid #ededed;
        border-radius: 15px;
        margin-right: 5%;
    }

    .box img {
        width: 100%;
        border-radius: 5px;
    }
    
    .box :hover {
        transform: scale(1.1);
        z-index: 1;
    }

}





footer {
    padding: 10px;
    text-align: center;
    margin-bottom: -100px;
}