@import url(./variables.css);

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

main{
    width: 100%;
    height: 100%;
    background: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 100px;
}

#title {
    color:#FFF;

    /* Desktop/h1-desktop */
    font-family: var(--accent-font);
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
}

.line{
    width: 100%;
    color: var(--secondary-color);
    border: 0px;
    border-top: 2px solid var(--secondary-color);
}

main h2 {
    color: #FFF;

    /* Desktop/h2-desktop */
    font-family: var(--body-font);
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 30px;
}

main h3{
    color:  #FFF;

    /* Desktop/h3-desktop */
    font-family: var(--accent-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 20px;
}

main p {
    color: #FFF;

    /* Desktop/p-desktop */
    font-family: var(--body-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 143.75% */
    margin-bottom: 20px;
}

.part {
    margin:20px 0px 60px 0px;

}

@media (max-width: 752px) {
    main h2{
        font-size: 28px;
    }
    main h3{
        font-size: 20px;
    }
    main p {
        font-size: 14px;
    }
}