/* --- ROOT ---*/
:root {
    --sotetszurke: #525252;
    --szurke: #b6b6b6;
    --bezs: #c8bcb1;
    --barna: #a48570;
    --kek: #5e80a2;
    --zold: #5e6d5c;
}

/* -----------------*/


body {
    background: linear-gradient(
        rgba(0, 0, 0, 0.7), 
        rgba(0, 0, 0, 0.7)
    ),
    url("../img/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}


main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


section {
    background-color: rgba(183, 183, 184, 0.315);
    min-height: 100vh;
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 10px;
    border-radius: 20px;
    box-shadow: 0px 3px 10px #000;
    padding: 25px;
}

.title {
    color: #fff;
    font-size: 3rem;
    margin: 2rem 0rem;
}

p{
    text-align: center;
    color: #fff;
}

.list{
    text-align: justify;
    padding-bottom: 15px;
    color: #fff;
}

.red-text{
    background-color: rgb(255, 56, 56);
    padding: 5px;
    font-weight: bold;
}

.underline{
    text-decoration: underline;
}

@media (min-width: 360px ) and (max-width: 1400px) {
    section{
        width: 90%;
        font-size: 15px;
    }
}

@media (min-width: 360px) and (max-width: 372px) {
    section {
        margin-top: 150px;
    }
}