html,
body {
    min-height: 100vh;
    /* Set min-height to cover the entire viewport */
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Changa', sans-serif;
    /* background-color: #f2cf43; */
    /* background-image: linear-gradient(315deg, #f2cf43 0%, #19a186 74%); */
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
    color: #fff;
    padding-bottom: 35px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

li {
    margin-bottom: -5px;
}

a {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.6);
    /* Adjust the alpha value (0.8 in this example) for the desired opacity */
}


a:hover {
    background-color: #029084;
    color: #fff;
}

a i {
    margin-right: 10px;
    font-size: 1.2rem;
    margin-left: 10px;
}

/* Control the size of your profile picture */
.profile-pic {
    border-radius: 50%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    width: 180px;
    height: 180px !important;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
}

h1 {

    margin-bottom: -3px;

}

/* Desktop styles */
@media (min-width: 600px) {
    a {
        width: 490px;
    }

    /* Style the icon container */
    .icon-container {
        position: relative;
    }

    /* Style the icons within the icon container */
    .icon-container i {
        font-size: 2rem;
        /* Increase the icon size as needed */
        position: absolute;
        top: 5px;
        left: 5px;
        /* move icons located on buttons to left or right */
    }
    .overflow-wrap {
        font-size: 22px;
    }
}

/* Mobile styles */
@media (max-width: 600px) {


    .profile-pic {
        width: 100%;
        height: auto;
        max-width: 170px;
        margin: 15px auto 0px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    }


    .container {
        max-width: 100%;
        padding: 30px 15px;
        box-sizing: border-box;
    }

    a {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    a i {
        margin-right: 5px;
        margin-left: 10px;
        font-size: 1.5rem;
        vertical-align: middle;
    }

    h1 {
        margin-bottom: -5px;
    }

    a span {
        font-size: 1.0rem;
        letter-spacing: 1px;
    }

    ul li:last-of-type {
        margin-bottom: 20px;
    }

    /* Style the icon container */
    .icon-container {
        position: absolute;
        top: 50%;
        left: 5px;
        /* move icons located on buttons to left or right */
        transform: translateY(-50%);
    }

    /* Style the icons within the icon container */
    .icon-container i {
        font-size: 1.1rem;
    }

    .overflow-wrap {
        padding-right: 45px;
        padding-left: 45px;
        word-break: break-word;
        font-size: 18px;
    }


}

/* Footer styles */
footer {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-align: center;
    bottom: 0;
    background-color: transparent;

}

/* Social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;

}

.social-link {
    color: #fff;
    margin: 1px;
    background-color: transparent;
    box-shadow: none;
    border-radius: 50%;
    padding: 7px;
    transition: color 0.3s ease;
    width: 42px;
}

.social-link:hover {
    background-color: transparent;
    color: #000;
}

.logo-container img {
    cursor: pointer;
}