body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    margin: 0 auto; 
    background-color: #ece9e9;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* On desktop (landscape orientation or wider screens), make it phone-like */
@media (min-width: 768px) and (orientation: landscape) {
    .container {
        max-width: 430px;
    }
    
    #image-container {
        max-width: 430px;
    }
}

#image-container {
    position: fixed;
    top: 0vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    transition: top 0.1s;
    width: 100%;
}

#profil_pic {
    width: 100%
}

.text {
    margin-top: 65vh;
    margin-bottom: 40vh;
    z-index: -1;
    width: 100%;
    text-align: center;
    font-size: 2em;
    color: #000000;
}

.text a {
    color: black;
}

.text p {
    margin: 0;
    padding: 10px;
    font-size: 100px;
    /* background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); */
}

.text .description, .text .job-search {
    font-size: 75px;
    padding: 20px;
    display: inline-block;
}

.text .description {
    margin-top: 35vh;
}

.text .job-search {
    margin-top: 5vh;
}

.text .user-text, .text .being.is-chaning {
    display: inline-block;
}

div.being {
    height: 75px;
    overflow-y: hidden;
    display: inline-block;
}

.current, .next {
    font-weight: bold;
}

div.being.is-changing span {
    transform: translateY(-70px);
    transition: transform 2000ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

div.being span {
    display: inline-block;
}

div.socialmedia-buttons {
    position: inherit;
    margin-top: -20px;
    margin-bottom: 5px;
    margin-right: 20px;
    border: 4px rgba(20, 20, 20) solid;
    background: #ece9e9;
    z-index: 2;
    width: 99%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socialmedia-buttons a {
    padding: 25px;
    opacity: 0.9;
    transition: 1s;
    font-size: 85px;
    color: rgb(20, 20, 20);
    text-decoration: none;
}

.socialmedia-buttons a:hover {
    cursor: pointer;
    opacity: 1;
}

.nuseum-section {
    margin-top: 100px;
}

.nuseum-section a {
    text-decoration: none;
    display: block;
    text-align: center;
}

.nuseum-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nuseum-logo {
    width: 60vw;
    height: auto;
}

.nuseum-text {
    font-size: 40px !important;
    color: #000000;
    margin-top: 10px;
}