* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

.container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.container:hover {
    transform: scale(1.05);
}

.headline {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.domain-name {
    font-size: 28px;
    color: #E67E22; /* Orange color for the domain name */
    margin-bottom: 20px;
}

.minimum-bid {
    font-size: 24px;
    color: #E74C3C; /* Red color for urgency */
    margin-bottom: 20px;
}

.minimum-bid span {
    font-weight: bold;
}

.contact-info {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info a {
    color: #3498DB; /* Blue color for link */
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.bid-button {
    background-color: #E74C3C; /* Red color for the button */
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bid-button:hover {
    background-color: #C0392B; /* Darker red on hover */
}
