body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    padding: 50px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
    gap: 15px;
    justify-content: center;
}

.container-outline {
    position: relative;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 5px #26729e;
    margin: 10px;
    width: 410px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.container-outline button {
    border-radius: 5px;
    bottom: 0;
    right: 0;
    left: 0;
}

.container-outline button:disabled,
.container-outline button[disabled] {
    display: none;
}

.header {
    font-size: 36px;
    background: linear-gradient(to right, #26729e, #1590d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.content {
    margin-top: 20px;
    font-size: 20px;
    color: #333;
}

@keyframes button {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1);
    }
}

button {
    background-color: #26729e;
    color: black;
    border-radius: 20px;
    font-size: 20px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto; /* Center the buttons */
}

button svg {
    flex-shrink: 0;
}

button:hover {
    background-color: #1590d6;
    animation: button 2s ease 0s 1 normal both;
}

.importantbtn {
    border-radius: 5px;
    width: 200px;
    height: 35px;
    font-size: 22px;
    font-weight: bold;
}

.creditsbtn {
    background: #e0e0e0;
    color: #333;
}

.creditsbtn:hover {
    background: #ccc;
    transform: translateY(-2px);
}

input[type="text"] {
    padding: 10px;
    border: 2px solid #26729e;
    border-radius: 5px;
    font-size: 16px;
    width: 200px;
}

hr {
    width: 350px;
}

.logo {
    height: 100px; /* Make the image bigger */
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.mainhr {
    border: 0;
    height: 1px;
    width: 99%;
    background: #ddd;
    margin: 20px 0;
    text-align: center;
}
