* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    color: #144b31;
}
body {
    overflow: hidden;
    background-color: #dfd;
}
.soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 100px;
    padding: 0 100px 100px 100px;
}
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 5px;
}
.txt p {
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
}
h1 {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
}
h1 span {
  color: #ab5e00;
}
.bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 200px);
    transform: translateX(100px);
    border-top: 1px solid #888;
    font-size: 13px;
    text-align: center;
    padding-bottom: 10px;
    
}

@media (max-width: 800px) {
    .soon {
        padding: 0 3vw 300px 3vw;
    }
    h1 {
        font-size: 25px;
    }
    .img {
        width: 30px;
        height: 30px;
        border-radius: 6px;
        margin-right: 3px;
    }
    .txt p {
        font-size: 13px;
        line-height: 15px;
    }
    .bottom {
        width: calc(100% - 60px);
        transform: translateX(30px);
        font-size: 11px;
    }
}