@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #f9f9f9;
}

main {
    display: flex;
}

header {
    padding: 2.6rem 0 2.5rem 5rem;
}

header h1 {
    font-family: 'Lora', sans-serif;
    font-size: 2.8rem;
    background-color: transparent;
}

main ul {
    margin-right: 10rem;
    margin-left: 0.5rem;
    list-style: none;
}

main ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: darkblue;
    font-size: 1.1rem;
    line-height: 1.7rem;
    font-family: Lato, sans-serif;
}

main .image-container img {
    width: 80%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

main .about-container {
    width: 40%;
    font-family: 'Lato', sans-serif;
}

main .about-container p {
    line-height: 1.6rem;
    font-weight: 10;
    font-size: 1rem;
}

main .about-container p .nubes {
    color: darkblue;
}

main .about-container .profile-pic {
    text-align: center;
}

main .about-container .credits {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 10;
}

main .email-container {
    width: 40%;
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
}

main .email-container #email {
    color: darkblue;
    letter-spacing: 0.14rem;
    padding-left: 3rem;
    font-size: 1.1rem;
}

main .about-container .profile-pic img {
    width: 46%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

main .about-container .profile-pic img.releases {
    margin-top: 1rem;
    width: 52%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

main .about-container p a {
    text-decoration: none;
    color: black;
}

.email-container .contact-pic {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-container .contact-pic img {
    width: 70%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.credits p a {
    text-decoration: none;
    color: black;
}

footer {
    margin-top: 2rem;
    position: absolute;
    left: 22vw;
    bottom: 6vh;
}

footer ul {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
}

footer ul li a {
    color: black;
    font-size: 1.4rem;
}