@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('./colors.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    body{
        font-size:12px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}
body {
    font-family: 'Poppins', sans-serif;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.container {
    background: var(--dark-grey-background);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;

}

.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header img {
    height: 60px;
    margin-bottom: 30px;
}

ul{
    list-style: none;
    
}
.modules ul{
    display: flex;
    flex-direction:column;
    gap:20px;
}

.modules ul li{
    display:flex;
    gap:10px;
    background:var(--accent-color);
    color:#fff;
    border-radius:10px;
    border:1px solid var(--accent-color);
    transition: border 0.3s;
}

.modules ul li:hover{
    border:1px solid var(--accent-color);
    background:var(--primary-color);
}
.modules ul li a{
    display:block;
    padding:20px 40px;
    width:100%;
}

.modules ul li a i{
    width:30px; 
    text-align:center;
}