/* 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: #171940;
    height: 100vh;
}

:root {
    --Platonic: #F5F5F5;
    --Tło: #B4DCED;
    --Róż: #E89C84;
    --Napisy: #171940;
    --KolorBOX: #002244;
    --Pomarańczowy: #E64510;
    --CiemnyPomarańczowy: #BD3508;
    --Niebieski: #0667E7;
}

/* Main section */

/* First section */

.first-section {
    height: auto;
    min-height: calc(100vh - 82px);
}

.first-section-information {
    align-items: center;
    justify-content: center;
}

/* Second section */

.second-section {
    width: 100%;
    height: auto;
    background-color: var(--Napisy);
}