#info, #functions {
    width: 100%;
    display: flex;

}

#functions {
    background-image: url("../img/bg/functions_bg.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    align-items: center;
    justify-content: center;
}

.title-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    width: 50%;
}

h1 {
    font-family: "Inter", sans-serif;
    font-size: 52px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    margin-top: 52px;
    margin-left: 52px;
}

h2 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    margin-left: 52px;
}

p {
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    margin-left: 52px;
    margin-top: 200px;
    margin-bottom: 52px;
}

#info img {
    height: 350px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 0 8px rgb(0, 0, 0);
    margin: 0;
    margin-top: 52px;
    margin-left: 190px;
}

h3 {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    color: #111827;
    margin: 0;
    font-weight: 600;
    margin-left: 190px;
    margin-top: 20px;
}

.functions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 82px;
    margin-bottom: 82px;
}

.functions-card {
    height: 350px;
    width: 350px;
    background-color: #f9fafb;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    border: solid 1px #000;
    padding: 8px;
    gap: 12px;
}

.functions-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.functions-card img {
    height: 150px;
    width: auto;
    
}

.functions-card h1 {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    color: #111827;
    margin: 0;
    font-weight: 600;
    margin-top: 12px;
}

.functions-card p {
    font-family: "inter", sans-serif;
    font-size: 18px;
    color: #111827;
    margin: 0;
    margin-top: 8px;
    padding: 0 12px;
}

.functions-grid a {
    text-decoration: none;
    color: inherit
}