body {
    font-family: 'Inter', sans-serif;
    margin: 20px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

#searchBar {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    justify-content: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 5px;
    aspect-ratio: 1 / 1;
}

.domain-icon {
    width: 312px;
    height: 312px;
    object-fit: contain;
}

.icon-description {
    font-size: 1.2em;
    margin-top: 8px;
    color: #333;

    /* make the text bold */
    font-weight: bold;

    /* float it so it sits below the icon but still flows in the layout */
    float: left;
    width: 100%;
}

#contactForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#contactForm button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

#contactForm button:hover {
    background-color: #1a1313;
}
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* behind all content */
    pointer-events: none;
    /* clicks go through it */
    background-color: #ffffff;
    /* fallback */
}