body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background-color: #1d1d1df4;
    padding: 20px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center horizontally if not enough room for all boxes */
}

#logo{
    height: 40px;
    filter: invert(.75);
  }

.box {
    width: 300px;
    margin: 20px;
    padding: 15px;
    border: 1px solid #262626;
    border-radius: 20px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #1f1313;
    color: ghostwhite;
    overflow: hidden;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.box p {
    margin-bottom: 20px;
}

.box button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    align-content: bottom;
    background-color: #4b3748;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, border-radius 0.3s;
}

.box button:hover{
    background-color: #a2a9bd;
    border-radius: 10px;
}

.box .phone-container {
    display: flex;
    gap: 20px; /* Add some gap between buttons */
}

.box .phone {
    padding: 10px;
    background-color: #4b3748;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s, border-radius 0.3s;
}

.box .phone:hover {
    background-color: #a2a9bd;
    border-radius: 10px;
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .button1{
    background-color: #292228;
    border: none;
    border-radius: 40px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    margin: 0 10px;
    transition: background-color 0.3s, border-radius 0.3s; /* Add transition */
  }

  .button2{
    background-color: #826c7f;
    border: none;
    border-radius: 40px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 15px;
    margin: 0 10px;
    transition: background-color 0.3s, border-radius 0.3s; /* Add transition */
  }
  
  .button1:hover{
    background-color: #a2a9bd;
    border-radius: 10px;
  }

  .button2:hover{
    background-color: #a2a9bd;
    border-radius: 10px;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 42%;
    left: 80%;
    transform: translateX(-50%);
  }