/* Global settings */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

body{
    overflow-x: hidden;
    background-color: var(--Platonic);
    height: 100vh;
}

:root {
    --Platonic: #F5F5F5;
    --Tło: #171940;
    --Napisy_główne: #171940;
    --Napisy: #D9B97E;
    --Tekst: #1D1918;
}

/* First section */

.first-section-text-box {
    align-items: center;
}

.first-section-describe-box {
    width: 80%;
}

.toggle {
    width: 90%;
}

/* Second section */

.second-section-container {
    padding-bottom: 50px;
}

.second-section-main-box {
    display: none;
}

.second-section-main-small {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.second-section-small-line {
    width: 90%;
    height: 3px;  /* Grubość lini */
    border: none; /* Usuwa domyślny styl granicy dla hr */
    background: linear-gradient(to right, #1D1918, #0667E7); /* Dodaje gradient liniowy */
    color: var(--Tekst);
}

.second-section-text-box:nth-child(1) {
    margin-top: 0px;
    margin-bottom: 50px;
}

.second-section-text-box {
    margin-top: 50px;
    margin-bottom: 50px;
}

.second-section-text-box-right {
    margin-top: 50px;
    margin-bottom: 50px;
}

.second-section-box-describe-right {
    padding-left: 36px;
}

/* footer */

.footer-box {
    display: flex;
    flex-direction: column;
}

.left-footer-contact {
    width: 100%;
}

.right-footer-describe {
    display: flex;
    justify-content: center;
    width: 100%;
}

.right-footer-class {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-footer-class-desc {
    display: flex;
    justify-content: center;
    margin-right: 0;
}

.site-rights {
    display: flex;
    justify-content: center;
    margin-left: 0;
}

.social-links {
    display: none;
}