#logos {
    position: fixed;
    float: right;
    width: 100%;
}

.float-r {
    position: relative;
    float: right;
    right: 30px;
}

body {
  font-family: 'Roboto', sans-serif;
}

#project-btn {

    width: 85px;
    height: 35px;
    background-color: #ffffff;
    transition: .25s;
    border: 1.5px #484848 solid;
}

#project-btn:hover {
    background-color: #484848;
    cursor: pointer;
    color: #ffffff;
}

.grid-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
  top: 30px;         /* whitespace around the entire grid */
  max-width: 1000px;     /* optional: max width for container */
  margin: 0 auto;        /* center container horizontally */
  background: #f9f9f9;   /* optional: background color for whitespace */
}

/* Each grid item with padding */
.grid-item {
  display: flex;
  flex-direction: column;  /* Add this */
  justify-content: center;
  align-items: center;
  margin: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: white;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  border-radius: 5px;
  
}

/* Make images fit nicely */
.grid-item img {
  max-width: 100%;
  height: auto;
  display: block;
}

.grid-item p {
  margin-top: 8px;  /* space between image and text */
  font-size: 1rem;
  color: #333;
  text-align: center;
}