body {
    background-color: #fff;
    font-family: var(--ff-text);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
}

/***************************************
Landing Page
***************************************/

.landing-bg {
    background-color: #9695fb;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.landing-bg div {
    margin-left: 144px;
    margin-right: 72px;
}

.landing-bg h2 {
    color: #ececed;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 16px 0;
}

.landing-bg h1 {
    font-family: var(--ff-title);
    color: #fff;
    font-size: 72px;
    line-height: 72px;
    font-weight: 700;
    text-align: left;
}

.landing-bg img {
    width: 400px;
    transform: translateY(5vw);
}

@media screen and (max-width: 1000px) {
    .landing-bg h2 {
        font-size: 20px;
    }
    .landing-bg h1 {
        font-size: 56px;
    }
    .landing-bg div {
        margin-left: 72px;
        margin-right: 36px;
    }
    .landing-bg img {
        width: 300px;
        transform: translateY(7vw);
    }
}

@media screen and (max-width: 700px) {
    .landing-bg {
        flex-direction: column-reverse;
        align-items: center;
    }
    .landing-bg h2 {
        font-size: 16px;
        text-align: center;
    }
    .landing-bg h1 {
        font-size: 48px;
        text-align: center;
    }
    .landing-bg div {
        margin-left: 16px;
        margin-right: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .landing-bg img {
        margin: 32px 0;
        max-width: 300px;
        width: 90vw;
        transform: translateY(0);
    }
}

.landing-bg-bottom {
    max-width: 100%;
    height: auto;
}

/***************************************
What is XdHacks?
***************************************/

.xd-desc {
    margin: 64px 16px;
    padding: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.xd-desc h1 {
    font-size: 32px;
    color: #1d1f2e;
    margin: 16px 0;
}

.xd-desc p {
    color: rgba(29, 31, 46, 0.7);
    font-weight: 500;
    max-width: 75%;
    margin-bottom: 16px;
}

/***************************************
XdHacks Philosophy
***************************************/

.xd-phil {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr 4fr;
    grid-template-rows: 1fr;
    justify-content: center;
    position: relative;
}

.xd-phil img {
    width: 80%;
    grid-column: 2 / span 2;
    align-self: center;
    position: absolute;
}

.xd-phil .statement-1, .xd-phil .statement-2 {
    padding: 64px;
}

.xd-phil .statement-1 {
    color: #1d1f2e;
    background-color: #d5d0fc;
    grid-column: 1 / span 2;
    padding-right: 20%;
}

.xd-phil .statement-2 {
    color: #d5d0fc;
    background-color: #1d1f2e;
    grid-column: 3 / span 2;
    padding-left: 20%;
}

.xd-phil h2 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    font-size: 36px;
    line-height: 50px;
}

@media screen and (max-width: 700px) {
    .xd-phil {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        align-items: center;
    }
    .xd-phil img {
        width: 200px;
        grid-column: 1;
        grid-row: 2 / span 2;
        justify-self: center;
    }
    .xd-phil .statement-1, .xd-phil .statement-2 {
        padding: 48px;
    }
    .xd-phil .statement-1 {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-right: auto;
        padding-bottom: 148px;
    }
    .xd-phil .statement-2 {
        grid-column: 1;
        grid-row: 3 / span 2;
        padding-left: auto;
        padding-top: 148px;
    }
}

/***************************************
Sponsor List
***************************************/
.sponsors {
    padding: 64px;
}

.sponsors h2 {
    font-size: 32px;
    color: #1d1f2e;
    margin: 16px 0;
    text-align: center;
}

.sponsors p {
    font-size: 16px;
    color: #1d1f2e;
    text-align: center;
    margin-bottom: 16px;
}

.sponsor-list {
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    justify-content: center;
}

.sponsor-list img {
    width: 100px;
    margin: 10px;
    height: 100px;
    object-fit: contain;
}