html,
body {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    /* https://fonts.adobe.com/fonts/old-claude-lp */
    font-family: "old-claude-lp-regular", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: black;
}

* {
    margin: 0;
}

#container {
    display: flex;
    flex-direction: column;
    width: 100vw;
}

#header {
    background-image: url(./assets/Imagen_rio-magdalena.jpg);
    background-size: cover;
    background-color: black;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    color: white;
    transition: 1s ease-in-out;
    z-index: 1;
    top: 0;
}

#header-text {
    /* https://fonts.adobe.com/fonts/p22-zaner */
    font-family: p22-zaner-pro-three, sans-serif;
    font-style: normal;
    font-weight: 700;
    /* Variaciones */
    font-variant-ligatures: common-ligatures;
    -moz-font-feature-settings: "liga", "clig";
    -webkit-font-feature-settings: "liga", "clig";
    font-feature-settings: "liga", "clig";
    /* Estilo */
    font-size: 14rem;
    text-align: center;
    transition: 1s ease-in-out;
}

#scroll-text {
    /* https://fonts.adobe.com/fonts/old-claude-lp */
    font-family: old-claude-lp-expert, sans-serif;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    bottom: 30px;
    animation: fade-in-out 5s infinite;
    font-size: 3rem;
    color: white;
}

@keyframes fade-in-out {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

main {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px;
}

#text-information {
    width: 360px;
    color: white;
}

p {
    margin-bottom: 15px;
}

#entries {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 800px;
}

.entry-box {
    transition: 0.4s;
}

h2 {
    font-family: "charcuterie-deco", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    transition: 0.4s;
    color: white;
    padding-bottom: 2px;
}

.entry-box:hover h2 {
    letter-spacing: 3px;
    font-size: 2rem;
    color: #dbb42c;
}

.entries-links {
    height: 100px;
    position: relative;
    transition: 0.4s;
    position: relative;
    overflow: visible;
    padding: 10px;
    border: 2px;
}

.entry-box:hover .entries-links {
    height: 150px;
    background-color: #161a1d;

}

.entries-links::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 15px;
    height: 15px;
    border-top: 2px solid whitesmoke;
    border-left: 2px solid whitesmoke;
    transition: all 0.4s ease;
}

.entries-links:hover::before {
    width: 100%;
    height: 100%;
}

.entries-links::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid grey;
    border-right: 2px solid grey;
    transition: all 0.4s ease;
}

.entries-links:hover::after {
    /* width: 100%;
    height: 100%; */
}

a {
    display: block;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.4s;
    color: #f2f4f3;
}

a:hover {
    letter-spacing: 2px;
    color: #edc531;
    opacity: 100%;
}


.entry-a {
    position: absolute;
    top: 10px;
    left: 15px;
    transition: 0.4s;
}

.entry-b {
    position: absolute;
    bottom: 15px;
    right: 15px;
    transition: 0.4s;
}

footer {
    height: 50px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: dotted white;
}

#my-name {
    margin-left: 25px;
    color: white;
}

#class-name {
    color: white;
    margin-right: 25px;
}

@media screen and (max-width:1024px) {
    #header-text {
        font-size: 10rem;
    }
}

@media screen and (max-width:768px) {
    #header {
        height: 20vh;
    }

    #header-text {
        font-size: 6rem;
    }

    #scroll-text {
        display: none;
    }

    main {
        flex-wrap: wrap;
    }

    #text-information {
        width: 650px;
    }
}



@media screen and (max-width: 425px) {
    #header {
        height: 20vh;
    }

    #header-text {
        font-size: 3rem;
    }

    #scroll-text {
        display: none;
    }

    main {
        flex-wrap: wrap;
    }
}