html,
body {

    height: 100%;
    width: 100%;
}


* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    font-family: 'Abel', sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
}


button:focus-visible {
    outline: 2px solid #4a90e2;
    outline: -webkit-focus-ring-color auto 5px;
}

a {
    text-decoration: none;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-center {
    justify-content: center;
}


.flex-item-center {
    align-items: center;
}

.full-center {
    justify-content: center;
    align-items: center;
}
.flex-spread{
    justify-content: space-between;
}
.flex-end{
    justify-content: flex-end;
}

.gap-2 {
    gap: 2px;
}

.gap-20 {
    gap: 20px;
}

.gap-50 {
    gap: 50px;
}


:root {
    --ligth-red: rgb(255 128 130);
    --red: #EE4037;
    --white-color: #fdfbef;
    --plus-color: #1E1E1E;
}