* {
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 15px;
}

::-webkit-scrollbar-track {
    background-color: pink;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}

::-webkit-scrollbar-thumb {
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: rgb(255, 99, 128);
}

body {
    overflow-x: hidden;
}

header {
    z-index: 1000;
    height: 5vh;
    width: 100%;
    background-color: rgb(255, 181, 194);
    position: fixed;
    top: 0;
}

.logo {
    position: absolute;
    padding-left: 25px;
    float: left;
    line-height: 5vh;
    text-transform: uppercase;
    font-size: 30px;
}

.logo a{
    color: aliceblue;
    text-decoration: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
}

.nav {
    float: right;
}

.nav ul {
    padding-right: 2vw;
    list-style: none;
}

.nav ul li {
    background-color: rgb(255, 181, 194);
    float: left;
    text-transform: uppercase;
    font-size: 23px;
    margin: 0 10px;
    transition: background-color 0.5s ease-in-out;
}

.nav ul li:hover {
    color: brown;
    background-color: rgb(255, 99, 128);
}

.nav ul li:active {
    color: brown;
    background-color: aliceblue;
}

.nav ul li a {
    text-decoration: none;
    display: block;
    padding: 0 3vh;
    line-height: 5vh;
    color: aliceblue;
    transition: all 0.3s ease-in-out;
}

.p-top {
    position: relative;
    height: 100vh;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(pink, rgb(255, 218, 115));
}

.p-top #word1 {
    font-size: 50px;
    font-weight: bold;
}

.p-top #word2 {
    font-size: 20px;
}

.p-img {
    width: 100%;
    height: 85vh;
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.5);
}

.img1 {
    background-image: url(../img/1.jpg);
}

.img2 {
    background-image: url(../img/2.jpg);
}

.img3 {
    background-image: url(../img/3.jpg);
}

.p-word {
    bottom: 0;
    opacity: 0;
    background-color: pink;
    padding: 50px 75px 50px 75px;
    color: rgb(255, 99, 128);
    font-weight: bold;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.text1 {
    position: absolute;
    float: left;
    width: 100%;
    border-top: 0.5vh solid rgba(255, 81, 81, 0.678);
}

.text1 #content {
    padding: 0 10vh;
    float: inline-start;
    font-size: large;
}

.text2 {
    float: right;
    height: 100%;
    width: 20vw;
    border-left: 0.5vh solid rgba(255, 81, 81, 0.678);
}

.text3 {
    float: left;
    height: 100%;
    width: 20vw;
    border-right: 0.5vh solid rgba(255, 81, 81, 0.678);
}

.p-about {
    position: relative;
    height: 10vh;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(pink, rgb(255, 218, 115));
}