@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Rubik+Wet+Paint&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --acl-red:#c50631;
    --acl-blue: #4472c4;
}


a{
    text-decoration: none;
    color: currentColor;
}

a:hover{
    color: currentColor;
}

header{
    width:100vw;
    height: 100px;
    display:flex;
    align-items: center;
    justify-content: center;
    background: #ffff;
    box-shadow: 0px 3px 8px rgba(0,0,0, 25%);
}

header > div{
    display: flex;
    height: 100%;
    width: 100%;
    padding: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header > div > .navbar-logo{
    width: 12%;
    height: 100%;
    display: flex;
    padding: 5px;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header > div > .navbar-items{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

header .item a:hover {
    border-radius: 5px;
    border-top: 1px solid darkred;
    border-bottom: 1px solid darkred;
    height: 50px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease;
}

.item-button{
    color: white;
    background: var(--acl-red);
    padding: 15px;
}
.item-button:hover{
    background-color: darkred;
    border-radius: 5px;
    transition: all .2s ease;
}

.modal-body{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-line a{
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
    gap:10px;
}

.modal-line a:hover{
    font-weight: bold;
    transition: all .2s ease;
}
