body {
    font-family: "Poppins", sans-serif;
    background-color: #f2f2f2;
    background-image: url(../assets/img/background.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #1a1a1a;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#triangle-01 {
    max-width: 20%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#triangle-02 {
    max-width: 40%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 5px;
    background-image: url(../assets/img/kerche-group.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.profile-name a {
    font-weight: 700;
    font-size: 1.5em;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.profile-link {
    font-weight: 300;
    font-size: 0.75em;
    text-align: center;
    color: #00edbf;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    background-color: #f15a24;
    text-decoration: none;
    color: #fffdee;
    font-size: 0.9em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #d8410b;
}

.svg-inline--fa {
    margin-right: 10px;
}

.links-container {
    width: 600px;
}

.links-container h1,
.links-container h2,
.links-container p {
    text-align: justify;
}

.links-container h1 {
    font-weight: 600;
    font-size: 1.5em;
}

.links-container p {
    font-weight: 400;
}

.links-container p strong,
.links-container h2 {
    font-weight: 600;
}

.links-container h2 {
    font-size: 1em;
    color: #f15a24;
}

.links-section-title {
    font-weight: 300;
    font-size: 1em;
    margin-bottom: 15px;
}

.link-item {
    margin-bottom: 10px;
}

.link-button {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #333;
}

.link-button img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
}

.link-button-info {
    flex-grow: 1;
}

.link-button-title {
    font-weight: bold;
    font-size: 1em;
    color: #fffdee;
    margin-bottom: 2px;
    text-align: center;
}

.link-button-description {
    font-size: 0.8em;
    color: #fffdee;
}

.map {
    width: 100%;
    height: 400px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.footer {
    font-weight: 300;
    font-size: 0.7em;
    color: #1a1a1a;
    margin-top: 30px;
    text-align: center;
}

@media only screen and (max-width: 680px) {
    .links-container {
        width: 90%;
    }
}