body {
    font-family: 'Inter', sans-serif;
    background:
    url(images/windows-7-wallpaper-1440x900.jpg) center fixed; /* Layer 2 - Fixed background */
    background-size: cover; /*Resize the background image to cover the entire container*/
}


footer {
    color: #eff1f3;
    font-family: 'Inter', sans-serif;
    margin-top: 58px;
    display: none;
}

header {
    font-size: small;
}


button:active {       
    color: linen;
    opacity: 1;    
}

button:hover {
    background-color:#C0E74D;
    box-shadow: 10px 5px 5px rgb(0, 0, 0);      
    cursor: pointer; /* Pointer/hand icon */
    font-weight: bolder; /*makes the text bold when hovering on it*/
    color: #4863A0;
    border-radius: 15px 15px 15px 15px;
}


html, body {
    /* Remove default margin and padding applied by the browser to the HTML and body elements */
    margin: 0;
    padding: 0;
    /* Ensure full height of viewport - helpful for creating layouts that span the entire viewport height */
    height: 100%;
}


main {
    background-color: #232b2b;
    width: 340px;
    height: 612px;
    color: #fcfcfc;
    border-radius: 15px 15px 15px 15px;
}

.btn-group {
    display: flex; /* Use flexbox to arrange items in a row (default direction) */
    flex-direction: column; /* Stack buttons vertically */
    align-items: center;  /* Center items horizontally within the container */
    border-radius: 13px 13px 13px 13px;
    margin-top: 14px;
}


.btn-group button {
    height: 47px;
    width: 251px;
    margin-bottom: 15px; /* Provide space between each button */
}



.circular {
    border-radius: 100%;
}



.content {
    text-align: center;
  }


.element {
    /* Background properties */
    background: url(images/1snapedit_square.jpg) center;
    background-size: cover; /* Cover the entire container */
    background-attachment: fixed; /* Fixed background */
    
    /* Flexbox properties */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    
    /* Container dimensions */
    width: 100vw; /* 100% of the viewport width - making sure that the container's size adapts to different screen sizes*/
    height: 100vh; /* 100% of the viewport height - making sure that the container's size adapts to different screen sizes*/
    
    /* Remove any margin and padding */
    margin: 0;
    padding: 0;
}


/* Media query for desktop view */
@media (min-width: 768px) {
    /* For desktop view, adjust container dimensions and center horizontally */
    .element {
        height: 44.5rem; /* Adjust height for desktop view */
        width: 76.25rem; /* Adjust width for desktop view */
        margin: 87px auto; /* Center horizontally with top margin for desktop view */
        padding-top: 34px; /* Adjust top padding for desktop view */
        padding-bottom: 34px; /* Adjust bottom padding for desktop view */
    }

    footer {
        display: none;
    }
}


.introduction {
   color: #B2BEB5;
   font-size: 14px;
   font-weight: 600;
   margin: 20px 37px 28px;   
}


.location {
    /* color:#46E888;*/
    color: #C2E255;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    position: relative;
    bottom: 12px;
}



.profile-pic {
    /* border-radius: 15px 15px 15px 15px; */
    max-width: 30%;
    margin: 22px 119px auto;
}






