body {
    font-family: 'Bangers', Arial, sans-serif;
    line-height: 1.6;
    color: white;
    box-sizing: border-box; 
    margin: 0;
    padding: 0;
    background-image: url('img/background/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden; 
}

.container {
    max-width: 1440px; 
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

h1, h2, h3, h4, p {
    margin-left: auto; 
    margin-right: auto; 
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: rgb(220,21,16);
    text-align: center;
    text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

h2 {
    font-size: 32px;
    color: rgb(220,21,16);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

h3 {
    font-size: 24px;
    text-align: center;
    color: rgb(220,21,16);
    margin-top: 30px;
    margin-bottom: 15px;
    text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

h4 {
    font-size: 20px;
    text-align: center;
    color: rgb(220,21,16);
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.6;
    color: white;
    text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
}

a {
    color: rgb(220, 21, 16);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-info {
    font-weight: bold;
    color: white;
}

.important-text {
    background-color: #ffeb3b;
    padding: 5px;
    border-radius: 5px;
    color: black;
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
    }
}
