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

.container { 
    margin: 0 auto;
    width: 100%;
    max-width: 1140px;
}

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

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

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

.main-section {
    background-color: #fafaff;
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.main-section {
    display: flex;
    align-items: center;
}

.main-section .wrapper {
    display: flex;
    align-items: center;
}
    
.text-wrapper {
    max-width: 425px;
}

.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;
}

    .about-section .wrapper{
    display: flex;
    flex-direction: column;
    gap: 60px;
    }

select {
    border: 1px solid rgba(48, 48, 48, 0.3);
    border-radius: 5px;
    width: 150px;
    padding: 8px 12px;
    font-weight: 400;
    font-size: 16px;
    appearance: none;
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
}

select:hover,
.text-field:hover {
    cursor: pointer;
    border: 1px solid #2965F1;
}


.info-wrapper {
    display: flex;
    justify-content: space-between  ;
}

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

.frameworks,
.books {
    min-width: 50%;
}

.frameworks-list,
.books-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.frameworks-list {
    font-weight: 400;
    font-size: 16px;
    padding-left: 20px;
}

.skills-block {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

.skills {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

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

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

form {
    margin-bottom: 40px;
}

.text-field {
    border: 1px solid rgba(48, 48, 48, 0.3);
    border-radius: 5px;
    max-width: 330px;
    width: 100%;
    height: 36px;
    background-color: rgba(255, 255, 255, 0);
    padding: 8px 12px;
    font-weight: 400;
    font-size: 16px;
}

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

.btn:hover {
    cursor: pointer;
    background-color: #2965F1E5;
}

.line {
    margin: 60px 0;
}

table {
    border: 1px solid #95a1bb;
    border-collapse: collapse;
    font-weight: 400;
    font-size: 14px;
    margin: 0 auto;
}

th, td {
    padding: 12px 15px;
}

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

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

.footer-link:hover {
    text-decoration: underline 1px solid #2965F1;
}