body{
    margin: 0;
    padding: 0;
}

.flex{
    display: flex;
}
.flex-column{
    flex-direction: column;
}
.flex-row{
    flex-direction: row;
}
.flex-center-h{
    justify-content: center;
}
.flex-center-v{
    align-items: center;
}
.text-center{
    text-align: center;
}

.flex-1{
    flex: 1;
}
.flex-2{
    flex: 2;
}
.flex-3{
    flex: 3;
}
.flex-4{
    flex: 4;
}
.flex-5{
    flex: 5;
}


input, select, textarea{
    outline: none;
    font-family: 'Sxuidz-Bold', sans-serif;
    font-size: 1.2rem;
    border: 0.1px solid #acdc01;
    background-color: #efefdf;
}

a{
    text-decoration: none;
    color: #efefdf;
    font-weight: normal;
}

a:hover {
    font-weight: bold;
    color: #272727;
}
ul{
    margin: 0;
    padding: 0;
    cursor: pointer;
}

button{
    cursor: pointer;
}
i{
    color: #efefdf;
    font-size: 1.3rem;
    cursor: pointer;
}
.box{
    box-shadow: 0px 4px 8px rgb(0 0 0/10%), 0px 12px 18px rgb(0 0 0/10%);
}

.fixed{
    position: fixed;
}
.relative{
    position: relative;
}
.absolute{
    position: absolute;
}