* {
    font-family: "Poppins", sans-serif;
}

body {
    overflow-y: scroll;
    overflow-x: hidden;
}

.background {
    display: block;
    left: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    right: 0;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -o-filter: blur(20px);
    -ms-filter: blur(20px);
    filter: blur(20px);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 50px auto;
    text-align: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.links a {
    display: block;
    margin: 10px 0;
    padding: 15px;
    text-decoration: none;
    color: white;
    background-color: var(--light-color);
    border-radius: 5px;
    transition: background-color 0.3s;
}

.links a:hover {
    background-color: var(--middle-color);
}

.links a img {
    width: 20px;
    height: 20px;
}

.consultation-btn {
    background-color: #3F8E69!important;
}

.consultation-btn:hover {
    background-color: #2e654c!important;
}

.btn-outline {
    background-color: white!important;
    color: var(--light-color)!important;
    border: solid 1px var(--light-color);
    transition: all .3s ease-in-out;
}

.btn-outline:hover {
    background-color: var(--light-color-50)!important;
    color: white!important;
}

.company-name {
    color: var(--dark-color);
}

.social-link {
    height: 4rem;
    width: 4rem;
}