body {
    font-family: sans-serif;
    background-color: rgb(0, 120, 215);
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.text-block{
    text-align: center;
    background-color: rgb(0, 156, 200);
    padding: 20px;
    border-radius: 25px;
    margin: 20px;
    box-shadow: 10px 10px 5px rgb(0, 175, 175);
    display: inline-block;
    gap: 10px;
    font-size: 20px;
}

.navbar {
    width: 100%;
    background: rgb(0, 200, 225);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 32px;
    box-sizing: border-box;
    margin-bottom: 18px;
    border-bottom: 2px solid rgb(0, 225, 255);
    border-radius: 20px;
}

.navbar-logo img {
    height: 40px;
    vertical-align: middle;
}

.navbar-links {
    display: flex;
    gap: 24px;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.2s;
}

.navbar-links a:hover {
    color: rgb(0, 225, 255);
}

.link{
    background-color: rgb(0, 225, 255);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.2s;
    color: azure;
}

.link:hover {
    background-color: rgb(0, 200, 255);
}

.card{
    background-color: rgb(0, 156, 200);
    padding: 20px;
    border-radius: 25px;
    margin: 20px;
    box-shadow: 10px 10px 5px rgb(0, 175, 175);
    display: inline-block;
    gap: 10px;
    font-size: 20px;
}

.container{
    text-align: center;
}

.card img{
    width: 200px;
    height: auto;
}