* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    list-style: none;
    background-image: url("/img/not-found/not-found.png");
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.logo {
    color: white;
    font-size: 8vw;
    margin-left: 2vw;
   
}
   
.logo  span{
    color:#00b64eff;
}
  
.container {
    display: grid;
    place-items: center;
    height: 100vh;
         
}
.content {
    text-align: center;
    background-color:black;
    color:white; 
    padding: 20px;
    border-radius: 10px;
    max-width: 90vw; 
    margin-top: 100px;
}
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
p {
    font-size: 1rem;
    margin-bottom: 0;
}

 
@media (min-width: 768px) {
.content {
     max-width: 80vw;
    }
h1 {
    font-size: 3rem;
    }
p {
    font-size: 1.5rem;
    }
}
