body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-image: url('/static/sbgr.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}



div {
    background: white;
    padding: 15px;
    margin: 20px auto;
    width: 320px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

img {
    border-radius: 10px;
}

button {
    background-color: #ff4d6d;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background-color: #e63950;
}

nav {
    background-color: rgb(206, 204, 204);
    padding: 10px;
    color: white;
    border-radius: 8px;
    border-color: rgb(63, 62, 62);
}

nav a{
    color: white;
    text-decoration: none;
    transition: 0.4s ease;
    padding: 10px;
}
nav a:hover{
    color: black;
    background-color: grey;
    transition: 0.4s ease;
    border-radius: 10px;
}