*, *::before, *::after {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}

html, body {
    
    background-color: var(--main-background-color);
    color: var(--main-text-color);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 16px;

    
}

body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

main{
    flex-grow: 1;
}

a {
    text-decoration: none;
    color:inherit;
}

@media(max-width: 320px) {
    body {
        display: none;
    }
}

.strong{
    font-weight: bold;
}

p{
    margin-top: 1rem;
    margin-bottom: 1rem;
}

ul.list_scrissors {
    list-style: none;
    padding: 0;
}

ul.list_scrissors li {
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    margin: 1rem;
}

ul.list_scrissors li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
   
    width: 1rem;  
    height: 1rem; 
    background-image: url('../../resources/kiegeszitokepek/ollo.svg'); 
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    text-align: center;
}
