:root {
    --bg: #2b2e2e;
    --bg-secondary: rgba(71, 45, 137, 0.484);
    --bg-tertiary: #534e5ee4;
    --text: #e5e0f0;
    --text-muted: #b8aed1;
    --accent: #726f78;
    --accent-light: #e5e2f0;
}

html {
    scroll-behavior:smooth;
}

body {
    width: 100%;
    height: 100%;
    background-color: var(--bg);

    padding: 0%;
    margin: 0%;
    display: flex;
    z-index: 0;

    flex-direction: column;
    padding-bottom: 20vh;
}

.btn_home_bg {
    background-color: var(--bg-secondary);
    width: 70px;
    height: 70px;
    border-radius: 30px;
    position: fixed;
    right: 20px ;
    bottom: 20px ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_home {
    padding: 0%;
    width: 30px;
    height: 30px;
}

h1 {
    background-color: var(--bg-tertiary);
    width: 60vh;
    height: auto;
    border-radius: 20px;

    color: var(--text);
    display: flex;
    justify-content: center;
    font-size: 10vh
}

.top-rectangle {
    margin: 5vh auto;
    
}



.footer {
    background-color: var(--bg-tertiary);
    color: var(--text);
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 5vh;
}

.top-rectangle {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-rectangle h1 {
    margin: auto;
}

.contact {
    width: 70%;
    margin: 5vh auto;
    padding: 40px;
    background-color: var(--bg-secondary);
    border-radius: 20px;
}

.contact h2 {
    color: var(--text);
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-card {
    background-color: var(--bg-tertiary);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s;

}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-icon {
    font-size: 40px;
}

.contact-label {
    color: var(--text);
    font-size: 18px;
    font-weight: bold;
}

.contact-value {
    color: var(--text-muted);
    font-size: 13px;
    opacity: 0.85;
    text-align: center;
}

.contact-card:last-child {
    grid-column: 2;
}