@media (max-width: 700px) {
    #steps {
        display: block;
        margin-top: 100px;
    }
}

#appHeader {
    width: 100%;
    height:fit-content;
    background-color: #0058ff;
    color: white;
    width: 75%;
    padding:20px;
    border-radius: 15px;
}

#appHeader h1 {
    color:white;
}

#promocodeButton {
    font-family: "Kode Mono", monospace !important;
    background-color: #e1ecff;
    border-radius: 5px;
    border: 1px solid #0058ff;
    padding: 10px 20px;
    box-sizing: border-box;
    color: #0058ff;
    font-size:16px;
    font-family: 'Inter-Tight', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

#promocodeButton:hover {

    font-weight: 700;
}

#promocodeArea p {
    text-align: center;
    font-size: 15px;
    display: none;
    width: fill;
    background-color: #aac8ff;
    border:#226fff 2px dashed;
    padding: 15px 20px;
    border-radius: 5px;
    color:#0058ff;
}

#steps {
    width:100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap:100px;
}

#appCreator {
    display: inline-block;
    width: fit-content;
    background-color: #2973fd;
    border:#568ff7 1px solid;
    padding:5px 10px 5px 10px;
    border-radius: 5px;
}

#appCreator p, #appCreator img {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}

@media (min-width: 700px) {

    #detailsWrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        height: 200%;
        gap: 20px;
        min-height: 100vh;
    }
}