@import url(base.css);
@import url(header-only.css);
@import url(footer.css);

.header-logo-order {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    cursor: pointer;
}

.header-logo-order img {
    width: 6vw;
    transition: 0.2s;
}

.success_wrapper {
    margin-top: 15vw;
    margin-bottom: 7vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

h1 {
    margin: 1vw;
    font-weight: 700;
    font-size: 2.3vw;
    color: rgba(70, 150, 43, 1);
}

h2 {
    margin-top: 0;
    margin-bottom: 1vw;
    font-weight: 400;
    font-size: 1.2vw;
    color: black;
}

.return_button {
    color: white;
    font-size: 1.5vw;
    font-weight: 700;
    background-color: rgba(70, 150, 43, 1);
    border-radius: 1vw;
    border: none;
    padding: 1vw;
    cursor: pointer;
}

.success_image {
    width: 15vw;
    height: 15vw;
}

@media (max-width: 480px) {
    .header-logo-order img {
        width: 12vw;
        transition: 0.2s;
    }
    .success_wrapper {
        margin-top: 33vw;
        margin-bottom: 7vw;
    }
    
    h1 {
        margin: 3vw;
        font-size: 6vw;
    }
    
    h2 {
        margin-top: 0;
        margin-bottom: 10vw;
        font-size: 5vw;
    }
    
    .return_button {
        font-size: 5vw;
        border-radius: 2.5vw;
        padding: 4vw;
    }
    
    .success_image {
        width: 50vw;
        height: 50vw;
    }
}