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

body {
    font-family: "Inter", sans-serif;
    color: #303030;
}

header {
    padding: 23px 0;
    background-color: #2965f1;
}

header span {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.main-section {
    background-color: #fafaff;
    padding: 60px 0;
}

.main-title {
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 20px;
}

.main-text {
    font-weight: 400;
    font-size: 18px;
}

.main-image {
    max-width: 715px;
}


.about-section {
    background-color: #fff;
    padding: 100px 0;
}

select {
    width: 150px;
    height: 36px;
    padding: 9px 12px;
    border: 1px solid rgba(48, 48, 48, 0.3);
    border-radius: 5px;
    appearance: none;
    background-image: url(./assets/images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: bottom 10px right 12%;
}

.section-title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
}

.frameworks-list {
    font-weight: 400;
    font-size: 16px;
    list-style-image: url(./assets/images/solar-map-arrow-up-bold.svg);
    padding: 0px 20px;
}

.books-list {
    font-weight: 400;
    font-size: 16px;
    padding: 0px 20px;
}

.label {
    font-weight: 400;
    font-size: 16px;
}

.text-field {
    width: 330px;
    height: 36px;
    padding: 9px 12px;
    border: 1px solid rgba(48, 48, 48, 0.3);
    border-radius: 5px;
    font-weight: 400;
    font-size: 16px;
}

.btn {
    width: 125px;
    height: 36px;
    border: none;
    border-radius: 5px;
    background-color: #2965f1;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.line {
    border: 1px solid rgba(48, 48, 48, 0.3);
    margin: 60px 0px;
}

table {
    width: 300px;
    height: 196px;
    font-weight: 400;
    font-size: 14px;
}

th, td {
    width: 55px;
    height: 40px;
    border: 1px solid #95a1bb;
    padding: 12px 15px;
}

footer {
    padding: 26px 0;
    background-color: rgba(163, 167, 255, 0.3);
}

.footer-link {
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    color: #2965f1;
}