body{
    background-color: rgb(255, 255, 255);
    margin: 0px;
}
.Naslov{
    background-color: rgb(180,180,180);
    height: 150%;
    display: flex;
    flex-direction: row;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
}
.Naslov-naslov{
    margin: 10px;
    font-size: 200%;
    color: rgb(243, 243, 243);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.Menu{
    background-color: rgb(180, 180, 180);
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: #050505;
}
.pod-naslov{
    color: white;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 3%;
    margin-top: 3%;

    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 12px 25px;
    background-color: #555555;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}
.pod-naslov:hover{
    background-color: #0056b3;
    transform: scale(1.05);
}
.Predstavitev{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 1%;
    margin-right: 1%;
}
.Predtsavitev-text{
    font-size: 150%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 5%;
}
.Predstavitev-text{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    margin: 5%;
}
img{
    width: 35%;
    border-radius: 10%;
}
.footer {
    background-color: rgb(161, 161, 161);
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 16px;
}
