* {
    box-sizing: border-box;
}

body {
    background-image: url("kepek/black.png");
    font-family: Arial, Verdana, sans-serif;
    color: beige;
    font-size: 10pt;
    margin: 0;
    padding: 0;
}

.tartalom {
    width: 90%;
    max-width: 900px;
    margin: auto;
    background-color: rgb(190, 190, 190);
    color: #000;
}

.navbar {
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr 1fr 7fr;
    background-color: #494949;
    padding: 0;
}

a:link, :visited {
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
    background-color: #494949;
    color: beige;
    padding: 10px;
}

a:hover, :active {
    color: orange;
    background-color: #2b2b2b;
}

img {
    width: 100%;
}

.witcher {
    float: right;
    width: 30vw;
}

.clear {
    clear: both;
}

h1 {
    font-size: 15px;
    padding: 10px;
}

.text {
    padding: 10px;
}

.text ul {
    list-style-type: square;
}

p {
    font-size: 10px;
    text-align: justify;
}

.copyright {
    background-color: rgb(255, 187, 0);
    color: rgb(66, 33, 2);
    width: 100%;
}

.copyright p {
    text-align: center;
    margin: auto;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width:450px) {
    .navbar {
        grid-template-columns: 1fr;
    }
    .content {
        grid-template-columns: 1fr;
    }
    .witcher {
        width: 100%;
    }
}