@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Wittgenstein:ital,wght@0,400..900;1,400..900&display=swap');

a {
    color: #f35114;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #a1dab8;
    font-family: Arial, sans-serif;
}

.container {
    border: 1px solid #000;
    border-radius: 15px;
    padding: 20px;
    width: 40%; /* Default width for larger screens */
    background-color: #ffffff00;
    box-sizing: border-box; /* Ensures padding is included in width/height */
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 0px 0;
}

.contact-item p,
.contact-item img {
    margin: 0;
    padding: 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid #648772;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.contact-item img {
    max-width: 90%;
    border-radius: 15px;
    margin: auto;
}

p {
    font-size: 1.2em;
    font-family: "Inter", system-ui;
    font-weight: 900;
    color: #f35114;
}

bk {
    font-family: "Wittgenstein", serif;
    font-weight: 700;
    color: #f35114;
    font-size: 1em;
    margin-left: 10px;
    text-decoration: underline;
    position: fixed; /* Fixed positioning */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        width: 80%; /* Increase width on mobile */
        padding: 30px; /* Increase padding on mobile */
    }

    .contact-item img {
        max-width: 100%; /* Ensure image fits within container on mobile */
    }
}
