
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    background-color: rgb(14, 14, 14);
}

.title {
    text-align: center;
    padding: 20px;
}

.title>h1 {
    color: #00BFFF;
    font-size: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    color: #00BFFF;
}

.title>p {
    font-size: 1.1rem;
    color: #bbbbbb
}

.container {
    flex: 1;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.item {
    background-color: rgb(30, 30, 30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.box-1 {
    grid-area: 1 / 1 / 3 / 3;
    background-color: rgb(30, 30, 30);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 8px;
}

.box-2,
.box-3,
.box-4,
.box-5,
.box-6 {
    flex: 1
}
#details{
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 20px;
}
#details>div>p{
    color: #bbbbbb;
    margin-top: 1.3rem;
}
.innerbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.innerbox>p {
    color: #bbbbbb;
    text-align: center;
    font-size: 1rem;
}

form {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

input {
    margin-top: 20px;
    padding: 12px 16px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    outline: none;
    background-color: #222;
    color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 200px;
    text-align: center;
}

input::placeholder {
    color: #bbbbbb;
}

input:focus {
    background-color: #333;
    box-shadow: 0px 4px 10px rgba(0, 191, 255, 0.6);
}

button {
    margin-top: 20px;
    padding: 12px 16px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    background-color: #00BFFF;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

button:hover {
    background-color: #009acd;
    box-shadow: 0px 4px 10px rgba(0, 191, 255, 0.6);
}

button:active {
    background-color: #007bb5;
    transform: scale(0.98);
}
