
.vika-hero{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: var(--orange);
    flex: 0 0 auto;
}

.vika-container{
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

#vika{
    width: 85vw;
    height: 85%;
    border-radius: 2.5vh;
    background: url(images/contact-vika.svg) no-repeat;
    background-size: contain;
    background-position: center;
    max-width: 95vh;
    max-height: 59vw;
    position: relative;
}

#vika:hover {
    cursor: pointer;
}

#copy-confirmation {
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 60%;
    font-size: 1.2rem;
    padding: 2px 8px;
    border-radius: calc(1.2rem + 1px);
    background-color: rgba(255, 255, 255, 0.496);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}
  
  

.about-informations{
    display: flex;
    width: auto;
    justify-content: space-evenly;
    align-items: center;
}

.about-text {
    color: rgb(62, 70, 78);
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2rem;
    
}

.about-button{
    border: none;
    margin-top: 0px;
    margin-bottom: 120px;
    font-size: 1.4rem;
    padding: 8px 20px;
    border-radius: calc(1rem + 5px);
    background: linear-gradient(to top left, #ff6f00, #ffaa00);
    color: rgb(255, 255, 255);   
}

.about-container{
    margin-bottom: 30px;
}












/* _____________________________________________ */
/* ___| mobile |___ */


@media (max-width: 780px) {


    .vika-container{
        height: 60svh;
    }

    #vika{
        width: 90%;
    }

    
}