/* Resetting default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set the background color and ensure it takes up full height */
body {
    background-color: #0D0D0D;
    font-family: 'Google Sans', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image styling for ordinal size (natural dimensions) */
.image {
    width: auto; /* Allow the image to use its natural width */
    height: auto; /* Allow the image to use its natural height */
    max-width: 35%; /* Prevent the image from exceeding the container width */
    margin-bottom: 20px; /* Space between image and paragraph */
}

/* Styling for the container */
.container {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    background-color: #0D0D0D; /* Updated to match the body background color */
    border-radius: none;
    text-align: center;
}

.container p {
    color: white;
    font-size: 12px; /* Set font size to 10px */
}

/* Styling for social icons */
.social-icons {
    margin-top: 12px; /* Increased space between the paragraph and icons */
}

/* Style for individual icons */
.social-icon {
    color: white;
    font-size: 19px; /* Set size of the icons */
    margin: 0 5px; /* Space between the icons */
    text-decoration: none;
    transition: color 0.1s; /* Smooth color transition for hover effect */
}

/* Yellow hover effect */
.social-icon:hover {
    color: #DB5389; /* Change to yellow when hovered */
}