#cookieBox {
    background-color: yellow;
    width: fit-content;
    padding: 1rem;
    border-radius: 2rem;
    font-size: 1.5rem;
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000000;
    margin: 1rem;
    text-align: center;
}


#cookie-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}


#cookieBox a {
    text-decoration: none;
    background-color: rgb(0, 153, 255);
    color: white;
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
    margin: 1rem ;
}


#choice {
    display: flex;
    justify-content: space-between;
}


#agree {
    background-color: greenyellow;
    color: black;
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    cursor: pointer;
}


#decline {
    background-color: red;
    color: black;
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    cursor: pointer;
}


#choice div, #cookieBox a {
    transition: 0.3s ease-in;
    scale: 1;
}

#choice div:hover, #cookieBox a:hover {
    scale: 1.02;
}


#cookieBox a:nth-child(1) {
    display: none;
}


@media screen and (orientation:portrait) {
    #cookieBox {
        padding: 0.5rem;
        font-size: 1.2rem;
        

    }



    #cookieBox a, #choice div {
        
        margin: 0.3rem ;
    }
    
    #cookieBox a:nth-child(1) {
        display: block;
    }
    #cookieBox a:nth-child(2) {
        display: none;
    }


        
    
}