@import url('../font/style.css');

:root {
    --primary: #FF4C00;
    --secondary: #000000;
    --bg-color: #eae9e8;
}

html, body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    height: 100%;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.body {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 200px;
    @media screen and (max-width: 1440px) {
        padding: 80px 5%;
    }
    @media screen and (max-width: 1024px) {
        padding: 40px 5%;
    }
    .header-img {
        height: 50px;
        max-width: 90%;
    }
    .header-text {
        text-align: center;
    }
    .header-h1 {
        text-align: center;
        font-weight: 600;
        font-size: 40px;
        @media screen and (max-width: 1024px) {
            font-size: 25px;
        }
    }
}
footer {
    background-color: var(--secondary);
    padding: 80px 200px 0 200px;
    position: relative;
    overflow: hidden;
    @media screen and (max-width: 1440px) {
      padding: 80px 5% 0 5%;
    }
    @media screen and (max-width: 1024px) {
      padding-top: 40px;
    }
    .info-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        a {
            color: #ffffff;
            text-decoration: none;
            text-align: center;
        }
        p {
            color: #ffffff;
            text-align: center;
        }
    }
    .logo {
      padding-top: 50px;
      line-height: 100%;
      @media screen and (max-width: 1024px) {
        padding-top: 20px;
      }
      img, svg {
        width: 100%;
        height: auto;
        padding-top: 0;
      }
    }
}
.flex-box {
    display: flex;
    justify-content: center;
    gap: 100px;
    @media screen and (max-width: 1440px) {
        gap: 50px;
    }
    @media screen and (max-width: 768px) {
        flex-direction: column;
        gap: 0px;
    }
}
.orange-box {
    background-image: url(../images/orange-box.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    text-decoration: none;
    color: #ffffff;
    aspect-ratio: 2;
    padding: 25px;
    align-items: flex-end;
    justify-content: space-between;
    width: 240px;
    cursor: pointer;
    @media screen and (max-width: 1024px) {
        width: 160px;
    }
    div {
        height: 100%;
        display: flex;
        align-items: center;
    }
    p {
        font-size: 24px;
        margin: 0;
        @media screen and (max-width: 1024px) {
            font-size: 16px;
        }
    }
    img {
        width: 20px;
        margin-bottom: 5px;
    }
}