.popup--container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;

    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 2;
    width: 100vw;
    height: 100vh;

    background-color: #1d1d1d;

    color: white;
}

.popup--logo{
    width: 300px;
}

.popup--buttons{
    display: flex;
    column-gap: 10px;
    margin-top: 20px;
}

.popup--buttons button{
    border: 0px;
    border-radius: 10px;
    padding: 15px;

    font-size: 16px;

    transition: 0.5s all;
}

.popup--buttons__accept{
    background-color: #c40303;
    color: white;
    font-weight: bold;
}

.popup--buttons__accept.clicked{
    background-color: #1d1d1d;
    border: 1px solid white;
}

.popup--buttons__reject{
    background-color: white;
    color: #1d1d1d;
}

.popup--container h2{
    margin: 20px 0px;
}

.popup--container p, .popup--container ul{
    margin: 0px;
}