@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --Background-Color : #6162C3;
    --Basic-Text-Color : #000;
    --Secondary-Text-Color: #6162C3;
    --Polygon-Text-Color : #8247E5;
    --Paragraph-Text-Color : #3A3A3A;
    --Background_Body : #fff;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    list-style: none;
    color: var(--Basic-Text-Color);
}

::-webkit-scrollbar {
    width: 3px;
    background-color: var(--Background_Body);
}

::-webkit-scrollbar-thumb {
    background-color: var(--Secondary-Text-Color);
    width: 2px;
    transition: all 0.3s ease;
}

main{
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    justify-content: center;
    flex-direction: column;
}
