/* GENERAL STYLES */
/* ============================= */

body{
    background-color: rgba(226, 203, 247, 1);
    color: rgba(65, 32, 139, 1);
    padding: 30px;
    font-size: 20px;
    font-family: "Prompt", serif;
    font-weight: 400;
    font-style: normal;
}

.part-one{
    background-color: rgba(214, 245, 255, 1);
    color: rgba(0, 73, 94, 1);
}

.part-two{
    background-color: rgba(179, 245, 188, 1);
    color: rgba(0, 105, 14, 1);
}

.part-three{
    background-color: rgba(249, 255, 181, 1);
    color: rgba(87, 95, 0, 1);
}

.part-four{
    background-color:rgba(252, 174, 124, 1);
    color: rgba(113, 44, 0, 1);
}

.part-five{
    background-color: rgba(250, 145, 137, 1);
    color: rgba(94, 0, 0, 1);
}

::selection .part-one{
    color: rgba(0, 73, 94, 1);
    text-shadow:
    0 0 10px rgb(3, 103, 131),
    0 0 10px rgb(3, 103, 131),
}

::selection{ 
    color: yellow;
    text-shadow:
    0 0 10px yellow,
    0 0 10px yellow,
}
   
/* NAV */
/* ============================= */

.nav{
    margin-bottom: 30px;
    user-select: none;
}

.nav-link{
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 5px 10px;
    border-radius: 3px;
    margin-right: 10px;
}

.nav-link:hover{
    background-color: yellow;
    box-shadow: 
        0 0 10px yellow,
        0 0 10px yellow;
}

/* MAIN */
/* ============================= */

.main{
    font-size: 4rem;
}

.home .main{
    font-size: 8rem;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* FONT */
/* ============================= */

.prompt-regular {
    font-family: "Prompt", serif;
    font-weight: 400;
    font-style: normal;
}

.p{
    font-family: "Prompt", serif;
    font-weight: 400;
    font-style: normal;
}

.main{
    font-family: "Prompt", serif;
    font-weight: 400;
    font-style: normal;
}


/* H1 */
/* ============================= */

.h1{
    font-family: "Prompt", serif;
}

a{
    font-family: "Prompt", serif;
    font-weight: 400;
    font-style: normal;
}