body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('images/mountain.png'); 
    background-size: cover;
    background-position: left center; 
    background-repeat: no-repeat; 
    background-color: #dcbebe;
    font-family: Lato, sans-serif;
}

.content {
    text-align: center;
    margin-top: 1px; /* Adjusts space from the top of the page */
    margin-bottom: 180px; /* Adds space between the text and buttons */
    z-index: 1; /* Ensures the text is above the background */
}

.content h1 {
    font-size: 58px;
    margin: 0;
    font-weight: bold;
}

.content h2 {
    font-size: 46px;
    margin: 10px 0 0 0;
    font-weight: normal;
}

.container {
    display: flex;
    gap: 20px;
    z-index: 1; /* Ensures the buttons are above the background */
    margin-top: 30px;
    justify-content: center;
}

/* Transparent circular buttons with highlighted edges, letters, and icons */
.circle-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background-color: transparent; /* Fully transparent background */
    color: white; /* Color for the text and icons */
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8); /* White border with some transparency */
    border-radius: 50%; /* Circular shape */
    font-size: 16px;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    position: relative;
}

.circle-button i {
    font-size: 24px; /* Increase the icon size */
    transition: opacity 0.3s ease, font-size 0.3s ease;
    margin-top: 8px; /* Add some space between text and icon */
}

/* Hover effect: hide the icon and show the title */
.circle-button:hover i {
    opacity: 0; /* Hide icon */
}

.circle-button:hover span {
    font-size: 20px; /* Increase font size */
    font-weight: bold;
    opacity: 1; /* Show title */
}

/* Title (text) initially hidden */
.circle-button span {
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    opacity: 0; /* Initially hidden */
    text-align: center; /* Ensure text is center-aligned */
    transition: opacity 0.3s ease, font-size 0.3s ease, font-weight 0.3s ease;
}

/* Hover effect: Highlight border, text, and icon */
.circle-button:hover {
    border-color: white; /* Fully white border on hover */
    border-width: 2px; /* Thicker border on hover */
    background-color: rgb(158, 195, 200);
    color: #f0f0f0; /* Slightly brighter text and icons on hover */
}

.circle-button:active {
    background-color: #b7c1cb;
}
