

#view{
    transition: all 0.5s ease-in-out;
}

.mobile {
    background-image: url("../img/phone-frame.png");
    background-repeat: no-repeat;
    background-size: contain;
    height: 770px;
    width: 390px;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
    z-index: 999;
}


/* Mobile iframe CSS */
.mobile iframe {
    height: calc(100% - 30px);
    width: calc(100% - 40px);
    position: absolute;
    top: 50%;
    left: 49%;
    transform: translate(-50%, -50%);
    border-radius: 35px;
}

.desktop {
    height: calc(100vh - 100px);
    width: 100%;
}

.desktop iframe {
    height: 100%;
    width: 100%;
}

.brand{
    text-align: center!important;
}

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    .brand{
       text-align: right!important;
    }
    
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

}