* {
    box-sizing: border-box;
}

html {
    font-family: ms pgothic;
}
::-webkit-scrollbar {
    display: none;
}
body {
    background: url(https://i.pinimg.com/736x/c2/20/f7/c220f7fc8f510a0cb5b35e1c72aea268.jpg);
    background-color: #f4f2ec;
    background-size: cover;
    color: #333;
    font-size: 14px;
}
p {
    padding: 0;
    margin: 0;
}
main {
    width: fit-content;
    height: fit-content;
    position: absolute;
    margin: auto;
    top: 15vh;
    left: 20vw;
}
#wrap {
    flex-wrap: wrap;
    width: fit-content;
    height: 58vh;
    align-content: center;
    align-items: flex-end;
    justify-content: space-between;
    display: flex;
    background-color: #f5f5f6;
    opacity: 1;
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(to right, #dee1e3, #dee1e3 1px, #f5f5f6 1px, #f5f5f6);
    box-shadow:
        0 0 0 0.2rem #f4f4f4,
        0 0 0 0.4rem rgba(255, 255, 255, 0.62);
}

/*left section*/
#left {
    padding: 0.8rem 0.3rem 0 0.6rem;
    width: 36vw;
    position: relative;
}

header {
    height: 25vh;
    width: 100%;
    background: url(/assets/sunflower.png);
    background-size: contain;
    border: 1px dotted white;
    display: flex;

    align-items: flex-end;
    justify-content: flex-end;
}
header h1 {
    line-height: 1.8rem;
    margin: 0;
    padding: 0;
    font-size: 2.5rem;
    font-weight: bolder;
    font-stretch: extra-condensed;
    letter-spacing: -1px;
    /*position: relative;
    top: -1.7rem;
    margin: auto;*/
    text-align: right;
    font-family: arial;
    color: #f4f4f4;
}

.txt {
    background-color: #f4f4f4;
    padding: 0.5rem 0;
    text-align: right;
}
.txt p {
    padding: 0.3rem 0.5rem;
}

/*right section*/
#right {
    overflow: scroll;
    width: 12vw;
    height: 100%;
}

nav {
    display: block;
    padding: 0.8rem 0.4rem;
   /* position: sticky;
    top: 0;
    z-index: 2;
    background-color: #f5f5f6;
    opacity: 1;
    background-size: 5px 5px;
    background-image: repeating-linear-gradient(to right, #dee1e3, #dee1e3 1px, #f5f5f6 1px, #f5f5f6);*/
}
nav p {
    margin: 0;
}
nav a {
    font-size: 15px;
    display: block;
    text-decoration-style: dashed;
    color: #d95e1e;
    transition: cubic-bezier(0, 1, 0, 1) 300ms;
    padding-top: 0.2rem;
}
nav a:hover {
    transform: translateX(0.2rem);
    letter-spacing: 1px;
}
nav a:active {
    color: blue;
    transform: translateX(1rem);
}

.dropdown,
.neruda,
.atm {
    width: 100%;
    height: 1.4rem;
    overflow: clip;
    transition: height 300ms;
    border-bottom: 1px solid #333;
    position: relative;
    top: 0;
}
.dropdown:hover {
    height: 11rem;
}
.dropdown h3,
.neruda h3,
.atm h3 {
    position: relative;
    top: 0;
    font-weight: 200;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
    padding: 0.2rem;
}
.dropdown div {
    overflow: scroll;
    margin: 0;
    height: 9.6rem;
    padding: 0.4rem 0.2rem;
}
.neruda {
    height: fit-content;
    padding: 0.4rem 0.2rem;
    font-family: times;
    font-size: 12px;
    font-style: oblique;
    color: #5a5953;
}
.atm {
    height: fit-content;
}
.atm-inner {
    padding: 0.4rem 0.2rem;
}

footer {
    margin-top: 0.5rem;
    font-size: 12px;
    color: #f5f5f6;
}
