*{
    color: white;
    font-size: 1.3rem;
    background-color: black;
}

body, html{
    background-color: black;
    font-family: 'Arial', sans-serif;
    display: flex;
justify-content: center;
}

body{
    width: 1300px;
    transform: translateY(10vh);
}

.main{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

h1, h2, h3, h4, h5, h6, p, ul, li{
    margin: 5px;
}

.opis{
    border: none;
}

.opis > td{
    border: none;
    text-align: center;
}

table{
    border-collapse: collapse;
    width: max-content;
}

tr:not(:first-of-type):hover{
    background-color: gray;
}

th{
    border: 3px white solid;
    padding: 5px;
}

td{
    text-align: center;
    border: 1px white solid;
    padding: 5px;
}

form{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.red{
    background-color:#aaa;
    text-decoration: underline;
}

.orange{
    background-color: #555;
}

.male{
    font-size: 0.8rem;
}

.menu{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

input, select{
    border: 2px solid white; 
    border-radius: 3px;
    padding: 4px 6px;
}

.tekst{
    /* width: max-content; */
}

.tekst > p{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

@media screen and (max-width:1500px) {
    body,html{
        align-items: initial;
    }
    
    .menu{
        grid-template-columns: repeat(3, 1fr);
    }
}