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

:root {
    --bg-btn-card: #141417;
    --forground-main-color: rgb(255 255 255 / 1);
    --background-main-color: rgb(0, 0, 0);
    --card-border-radius: 30px;
}

body {
    padding: 0 20px;
    max-width: 1100px;
    margin: 3rem auto;
    background-color: var(--background-main-color);
    color: var(--forground-main-color);
}

body::-webkit-scrollbar {
    width: 8px;
    background-color: rgb(64, 63, 63);
}

body::-webkit-scrollbar-thumb {
    border-radius: 11px;
    /* -webkit-box-shadow: inset -5px 0px 29px 0 #ec4896; */
    background-color: rgb(99, 99, 99);
}

main {
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title {
    font-size: 3rem;
    padding-top: 0rem;
    font-weight: 700;
}

.content-text {
    padding: 1rem 0rem 3rem 0rem;
    font-size: 1.2rem;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 18rem;
    height: 18rem;
    background-color: var(--bg-btn-card);
    transition: 0.4s;
    border-radius: var(--card-border-radius);
    flex-direction: column;
    position: relative;
}

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

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.createdby-section {
    width: 100%;
    text-align: center;
    padding: 8px 0;
    background-color: #212128;
    position: absolute;
    bottom: 0;
    border-radius: 0 0 var(--card-border-radius) var(--card-border-radius);
}

.createdby-section a {
    color: rgb(129 120 255 / 1);
    text-decoration: none;
}

.btn-def-text {
    margin-top: 20px;
}

footer {
    padding-top: 3rem;
    text-align: center;
}

footer>a {
    color: white;
    font-weight: 700;
}