body, * {
    margin: 0;
    padding: 0;
}

.alert-responsive{
    display: none;
}

@media screen and (max-width:450px){
    .alert-responsive {
        display: block;
        width: 100vw;
        height: 100vh;
        position: fixed;
        background: linear-gradient(112.74deg, #e09569 1.67%, #C41FDF 83.77%);
        font-size: 5vw;
        text-align: center;
        color: black;
        z-index: 10;
    }
    .alert-responsive p{
        font-weight: bolder;
        width: 80%;
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


body {
    background-color: #F2F2F2;
    overflow-x: hidden;
}

div.header h1{
    color: #1ECBCF;
    font-family: "Calibri";
    font-weight: bold;
    font-style: italic;
    font-size: 50px;
    position: relative;
    left: 1.5vw;
    top: 1vw;
}

div.app-box {
    width: 84%;
    height: 70vh;
    position: relative;
    top: 15vh;
    left: 50%;
    transform: translate(-50%);
    background:linear-gradient(to bottom, #530EBB, #9358EB);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.4);
    color: white;
}

div.app-box div.back-button {
    position: absolute;
    top: 2%;
    left: 1.5%;
    cursor: pointer;
    color: gray;
}

div.app-box div.top div.streetname, div.estimation{
    display: inline-block;
}

div.app-box div.next-button{
    position: absolute;
    right: 5vw;
    top: 30vh;
    background-color: royalblue;
    height: 4vw;
    width: 4vw;
    border-radius: 200%;
    text-align: center;
    line-height:4vw;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.16);
}

div.app-box div.streetname{
    font-family: "Times New Roman";
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.16);
    font-weight: bold;
    font-style: italic;
    font-size: 50px;
    padding: 2vw 2vw;
}

div.app-box div.estimation {
    font-family: "Calibri";
    position: absolute;
    right: 2vw;
    top: 4vh;
}

div.app-box div.estimation div.title {
    position: relative;
    left:59%;
    font-size: 25px;
    /* margin-left: 10%; */
}

div.app-box div.estimation div.value {
    font-size: 60px;
    margin-top: -10px;
    font-weight: bold;
    font-style: italic;
}