body {
    color: white;
    font-family: Calibri, sans-serif;
    text-align: center;
    background: url("../images/bg%20(2).jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
 .buttt{
         
      background-color: rgb(163, 163, 163);
      }
header {
    width: 100%;
     background-color: rgb(163, 163, 163);
    padding: 20px 0;
}

header h3 {
    margin: 0;
    font-size: 24px;
}

.projects {
    margin-top: 20px;
}

.projects h2 {
    margin-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    justify-content: center;
     background-color: rgb(163, 163, 163);
     border-radius: 5px;
}

.grid-container a {
    background-color: rgb(163, 163, 163);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
}

.grid-container a:hover {
    background-color: #454545;
}

.intro {
    margin: 20px 0;
}

.intro h1 {
    font-size: 40px;
}

.image-container {
    margin: 20px 0;
}

img.img {
    border-radius: 30px;
    object-fit: cover;
    width: 330px;
    height: 330px;
}
