* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "sans-serif";
}

.home a {
    cursor: pointer;
    color: #fff;
    white-space: nowrap;
    padding: 0 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home button:hover {
    background-color: #f59221;
    color: black;
    border: 1px solid #f59221;
    height: 45px;
    font-weight: 500;
}

.container {
    display: flex;
    row-gap: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.container .image {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.container header {
    font-size: 60px;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.container header .sub {
    font-weight: 400;
}

.container p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    max-width: 550px;
    text-align: center;
}

.container .time-content {
    display: flex;
    column-gap: 30px;
    align-items: center;
}

.time-content .time {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.time .number,
.time .text {
    font-weight: 500;
    color: #fff;
}

.time .number {
    font-size: 40px;
}

.time .text {
    text-transform: capitalize;
    font-size: 13px;
}

.email-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 15 0px;
    width: 100%;
}

.email-content p {
    font-size: 13px;
}

.input-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 40px;
    max-width: 400px;
    width: 100%;
    margin: 10px 0 10px 0;
    column-gap: 10px;
}
.input-box a{
    height: 40px;
    width: 100px;
}

.input-box input,
.input-box button {
    height: 100%;
    outline: none;
    border: none;
    border: 1px solid #fff;
    border-radius: 4px;
    font-weight: 400;
    background-color: rgba(255, 255, 255, 0.2);
}

.input-box input {
    width: 100%;
    padding: 0 13px;
    color: #fff;
}

input::placeholder {
    color: #fff;
}

.input-box button {
    cursor: pointer;
    color: #fff;
    white-space: nowrap;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.input-box button:hover {
    background-color: #f59221;
    color: black;
    border: 1px solid #f59221;
    height: 45px;
    font-weight: 500;
}

footer {
    height: 40px;
    color: white;
    background-color: black;
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 12px 12px;
}

.social {
    padding: 5px;
    display: flex;
    column-gap: 10px;
    align-items: center;
    margin-top: 10px;
    align-items: center;
}

.social img {
    margin: 0 10px;
    padding: 0 10px;
    height: 40px;
    transition: all 0.2s ease;
}



.home {
    position: absolute;
    display: flex;
    padding: 50px;
    text-align: right;
}

.home button {
    height: 40px;
    width: 90px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #fff;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
    transition: all 0.3s ease;
}

.home button:hover {
    cursor: pointer;
    background-color: #f59221;
    color: black;
    border: 1px solid #f59221;
    width: 100px;
    font-weight: 500;
}

.home a {
    text-decoration: none;
}

/* Phone dimensions */
@media (max-width: 949px) {
    .home {
        padding: 10px;
    }

    .container {
        row-gap: 1px;
    }

    .container header {
        font-size: 20px;
    }

    .container p {
        font-size: 12px;
        max-width: 300px;
    }

    .email-content {
        margin-top: 15px;
        width: 80%;
    }
    .input-box {
        display: block;
        text-align: center;
        margin-bottom: 10px;
        height: 80px;
    }
    input::placeholder {
        text-align: center;
        font-size: 15px;
    }
    .input-box input {
        margin-bottom: 10px;
        padding: 5px;
        align-items: center;
        height: 40px;
        max-width: 300px;
        width: 100%;
    }
    .input-box button {
        height: 35px;
        max-width: 200px;
    }
    .social img {
        height: 50px;
        padding: 2px;
        margin: 2px;
    }

}