@font-face {
    font-family: Montserrat arm;
    src: url("../assets/font/Montserratarm-Regular.otf");
}

html,
body {
    margin: 0;
    height: 100%;
    box-sizing: border-box;
    font-family: Montserrat arm;
}

p,
h1,
h2,
h3 {
    margin: 0;
}

a {
    text-decoration: none;
}

main {
    background-image: url("../assets/images/bgImg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    padding: 48px 24px 32px 24px;
}

.container > p {
    font-size: 20px;
    color: #edefef;
    font-weight: 700;
    margin-top: 8px;
}

.informationBlock {
    margin-top: 24px;
}

.informationBlock > h2 {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
}

.informationBlock > p {
    margin-top: 8px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

.informationBlock > h1 {
    margin-top: 48px;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;
}

.ourProjects {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ourProjects > h3 {
    font-size: 30px;
    line-height: 36px;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.ourProjects > a > img {
    margin-top: 32px;
    margin-bottom: 24px;
}

.donateBtn {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 119px;
    height: 40px;
    background-color: #ffffff;
    padding: 12px 16px;
    box-sizing: border-box;
    border: 1px solid #774594;
    border-radius: 20px;
    font-size: 14px;
    line-height: 16px;
    color: #774594;
    font-family: Montserrat arm;
    cursor: pointer;
}

.whiteIcon {
    display: none;
}

.donateBtn > img {
    width: 20px;
    height: 20px;
    margin: 0 0 0 16px;
    transition: 300ms;
}

.donateBtn:hover {
    background-color: #774594;
    color: #ffffff;
    transition: 300ms;
}

.donateBtn:hover > .filledIcon {
    display: none;
}

.donateBtn:hover > .whiteIcon {
    display: flex;
}

.contactUs {
    display: flex;
    justify-content: space-between;
    row-gap: 16px;
    column-gap: 32px;
    padding-bottom: 24px;
    padding-left: 72px;
    padding-right: 72px;
}

.contactUs > div {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.contactUs > div > .item {
    display: flex;
    align-items: center;
    column-gap: 16px;
    row-gap: 16px;
}

.contactUs > div > .item > span {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
}

.item > span * {
    color: #ffffff;
}

@media screen and (max-width: 650px) {
    .container {
        padding: 48px 16px;
    }

    .informationBlock > h2 {
        font-size: 18px;
        line-height: 30px;
    }

    .informationBlock > p {
        font-size: 14px;
        line-height: 24px;
    }

    .informationBlock > h1 {
        margin-top: 24px;
        font-size: 40px;
        line-height: 48px;
    }

    .ourProjects {
        margin-top: 24px;
    }

    .ourProjects > h3 {
        font-size: 20px;
        line-height: 32px;
    }

    .ourProjects > a:last-child {
        width: 100%;
    }

    .donateBtn {
        width: 100%;
    }

    .contactUs {
        flex-direction: column;
        padding-left: 16px;
        padding-right: 16px;
    }

    .contactUs > div {
        width: 100%;
    }

    .contactUs > div > .item > span {
        font-size: 14px;
        line-height: 24px;
    }
}

@media screen and (max-width: 900px) {
    .contactUs {
        padding-left: 16px;
        padding-right: 16px;
    }
}