body {
    background-color: black;
    margin: 0;
    padding: 0;
}
h1 {
    color: rgb(255, 240, 244);
    display: block;
    margin: auto;
    text-align: center;
    margin-top: 15vh;
    font-size: calc(3.2vw + 3.2vh);
    font-family: 'Brush Script MT', cursive;
    text-wrap:balance;
}

p {
    color: rgb(255, 240, 244);
    font-family: Arial, Helvetica, sans-serif;
    display: block;
    text-align: left;
    width: 90vw; /* changed to 100vw when the width is larger than the height */
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 5vh;
    padding-bottom: 5vh;
    font-size: calc(1vw + 1vw);
    text-wrap: pretty;
}

div {
    height: fit-content;
}

.portraitmobile {
    width: 90vw;
}

emph {
    text-decoration: underline;
    text-decoration-color: #b50075;
}

nav {
    background-color: #b50075;
    padding:0;
    width: 100vw;
    display: block;
    margin:0;
    top:0;
    height: 12vh;
    position: fixed;
}

hr {
    color: #b50075;
    background-color: #b50075;
    border-color: #b50075;
    border-top: #b50075;
    border-left: #b50075;
    border-right: #b50075;
    width: 70vw;
    border-radius: 10px;
}

/* margin top in the paragraph without using element class="" */
.mtopp {
    margin-top: 10vh;
}
/* margin bottom in the paragraph without using the element class="" */
.mbotp {
    margin-bottom: 25vh;
}
.scrollandshow {
    
    position: relative;
    opacity: 0;
    transform: translateX(-70vw);
    transition:all 1s ease;
}
.scrollandshow.active {
    transform: translateX(0vw);
    opacity: 1;
}

.menubutton {
    text-align: center;
    background-image: url(/img/menu.png);
    background-size: contain;
    aspect-ratio: 1/1;
    display:block;
    background-repeat: no-repeat;
    height: 8vh;
    margin: 2vh;
    cursor: pointer;
}

menu {
    position: fixed;
    margin: 0;
    display: block;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0);
    transition: all 1s ease;
    top:0;
    pointer-events: none;
}

menu menubar {
    height: 100vh;
    display: block;
    transition: all 1s ease;
    position: fixed;
    float: left;
    width: 30vw;
    top:0;
    left: -30vw;
    background-color: #b50075;
    color: rgb(255, 240, 244);
    font-family:Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    padding-top: 10px;
    font-size: 2vw;
}

menu whitex {
    position: fixed;
    top: -10vh;
    height: 10vh;
    margin: 1vh;
    display: block;
    transition: all 1s ease;
    background-image: url(/img/whitex.png);
    aspect-ratio: 1/1;
    background-color: rgba(0, 0, 0, 0);
    float: right;
    right: 0;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

menu menubar a {
    background-color: black;
    text-decoration: none;
    display: block;
    color: rgb(255, 240, 244);
    border-radius: 10px;
    margin: 10px;
    height: 10vh;
    text-align: center;
    line-height: 10vh;
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 1vw;
    bottom: 0;
    position: relative;
}

menu menubar .socials {
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 10px;
    margin-bottom: 20px;
    width: calc(1.5vw + 5vh); 
    height: calc(1.5vw + 5vh);
}

menu menubar h1 {
    color: rgb(255, 240, 244);
    display: block;
    margin: auto;
    text-align: center;
    font-size: calc(3vw + 3vh);
    font-family: 'Brush Script MT', cursive;
    text-wrap:balance;
}

menu menubar hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #000000;
    color: #000000;
    margin: auto;
    padding: 0;
    width: 70%;
    border-radius: 10px;
}