* {
    font: 44px Arial, sans-serif;
    color: white;
}

body 
{
    margin: 0;
    padding: 0;
}

.header
{
    font-size: 40px;
}

.header img 
{
    width:40px;
    height:40px;
}

button 
{
    font-size: 30px;
    padding: 10px;
    width: 500px;
    background-color: #0000003f;
    border-radius: 10px;
    border: 2px #FFF solid;
    color: #FFF;
}

button:hover
{
    background-color: #000
}

p {
    color: white;
    font-size: 20px;
}

.line {
    height: 1px;
    width: 100%;
    background-color: white;
    margin: 20px 0;
}

body
{
    text-align: center;
}

#borzoi-gallery 
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centers horizontally */
    gap: 15px;
    margin-top: 20px;
    padding: 20px;
}

#borzoi-gallery img 
{
    width: 250px;
    height: 250px;
    object-fit: cover;

    padding: 10px;
    border-radius: 30px;
    transition: transform 0.3s;
}

#rate-limit-toast
{
    position:fixed;
    bottom: 10px;
    z-index: 9999;
    margin: auto;

    left: 0; 
    right: 0; 
    margin-inline: auto; 
    width: fit-content;

    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color:rgb(208, 73, 73);

    border: 1px white solid;
    border-radius: 12px;
    padding: 15px 50px;
    font-size:20px;
    opacity: 0;
}

#rate-limit-toast button 
{
    border: 0;
    background-color: #00000000;

    width: auto;
    height: auto;
}
#rate-limit-toast button:hover
{
    background-color: #00000000;
    text-decoration: underline;
}

#rate-limit-toast.show {
    opacity: 1;
}