body {
    background-image: url(pozadiswag.png);
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
   scale: 200%;
   margin-top: 450px;
}
.kurz{    
    font-family: "Archivo Black", sans-serif;
}
h1 {
    -webkit-text-stroke: 1px black; 
    font-size: 2.5em;
    margin-bottom: 0px;
    color: #787575;
    font-family: "Montserrat", sans-serif;

}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.arrow-link {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid rgb(7, 243, 239);
    transition: border-top-color 0.3s ease;
}

.arrow-link:hover {
    border-top-color: red;
}


.course-container {
    background-color: rgb(0, 0, 0);
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 400px;
    width: 600px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.course-title {
    margin-top: 0;
    color: #9c9204;
        font-size: 60px;
}

.course-description {
    font-size: 20px;
    color: #888585;
    margin: 10px 0;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.course-price {
    font-size: 40px;
    margin-top: 90px;
    font-weight: bold;
    color: #0073e6;
}

.order-button {
    background-color: #0073e6;
    color: white;
    border: none;
    scale: 200%;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 90px;
    transition: background-color 0.3s ease;
}

.order-button:hover {
    background-color: #005bb5;
}
.footer-container {
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center; 
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p, .footer-section ul, .footer-section li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section ul {
    padding-left: 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    background-color: #222;
    color: #bbb;
    text-align: center;
    padding: 10px 0;
}

footer {
    width: 100%;
}