﻿a:link {
    color: blue;
    text-decoration: none;
}

a:visited {
    color: blue;
    text-decoration: none;
}

a:hover {
    color: darkblue;
    text-decoration: underline;
}

a:active {
    color: darkblue;
    text-decoration: underline;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.centered-div {
    padding: 20px;
    background-color: lightblue;
    border: 1px solid #ccc;
    max-width: 100%;
}

.logo-div img {
    max-width: 100%;
    height: auto;
}

.logo-div {
    padding: 20px;
    background-color: #FFFFFF;
    border: none;
    max-width: 100%;
}
