*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body{
    min-height: 100vh;
    background-color: #050505;
    color: white;

}

section{
    padding: 80px 7%;
}

nav{
    position: sticky;
    top: 0;
    z-index: 22;
    background-color: #050505;
    border-bottom: 1px solid #222;

}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li{
    height: 50px;

}

nav a{
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;    
    color: white;
    font-size: 16px;
      
}

nav a:hover{
    color: aquamarine;
    
}

nav li:first-child{
    margin-right: auto;
}

.sidebar{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 100;
    background-color: #050505 ;
    border-left: 1px solid aquamarine;
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.sidebar li{
    width: 100%;

}

.sidebar a{
    width: 100%;
}


@media(max-width: 800px){
    .hideonmobile{
        display:none;
    }
    
    
}

@media(max-width:400px){
    .sidebar{
        width: 100%;
    }
}

h1{
    font-size: 60px;
    color: aquamarine;
    margin: 0 0 20px 0;
}

p{
    font-size: 18px;
    line-height: 1.7;
    margin-top: 20px;
    max-width: 600px;
}

.container1,.c2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    
}

.one,.two,.three,.four,.five{
    height: 250px;
    border-radius: 20px;
}

.one,.two,.three,.four,.five{
    background-color: #111111;
    border: 2px solid #222;
    border-radius: 20px;
}

.one img,
.two img,
.three img,
.four img,
.five img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;

}

.one:hover
,.two:hover,
.three:hover,
.four:hover,
.five:hover{
    border: 2px solid aquamarine;
}

#pc,#home{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pctext,.hometext{
    max-width: 550px;
}

#home{
    min-height: calc(100vh-50px);
}
 

