@import url('https://fonts.cdnfonts.com/css/inter');

* {
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

:root {
    --text: rgba(255, 255, 255, 0.7);
    --color: #7c3aed;
    --bg: #201435;
}

body {
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg);
    width: 100%;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    max-width: 1000px;
    margin: 2em auto;
}

.feature {
    margin-top: 10px;
    padding: 2em;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    background-color: var(--color);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    margin-bottom: 0.5em;
    font-size: 1.5em;
    text-transform: uppercase;
}

hr {
    height: 5px;
    border-radius: 10px;
    border: 2px solid var(--color);
    width: 100%;
    top: 5px;
    bottom: 5px;
}

p {
    margin: 0;
    padding: 0;
}

.noPadding {
    padding: 0;
}

img {
    border-radius: 5px;
    border: 2px solid white;
}

.feature img {
    width: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

a {
    background-color: var(--bg);
    color: var(--color);
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 3px;
}

.btn {
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 800;
    cursor: pointer;
    background-color: var(--bg);
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    transition: 0.5s;
}

.btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}