body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12vh;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60vw;
    height: 74vh;
}

.avatar {
    transform: translateY(65%);
    width: 12rem;
    height: 12rem;
}

.speechbox {
    position: relative;
    background-color: var(--secondaryColour);
    border-radius: 1rem 1rem 1rem 0;
    width: 50vw;
    height: min-content;
    padding: 3rem;
}

.speechbox .triangle {
    position: absolute;
    width: 4rem;
    height: auto;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    fill: var(--secondaryColour);
}

.speechbox p {
    font-size: 5rem;
    color: var(--light);
    font-family: 'Ubuntu Mono';
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 14vh;
}

footer a {
    font-family: 'Nerd Font';
    font-size: 8rem;
    text-decoration: none;
    color: #248232;
    padding: 0 2rem;
}

/* Media Queries */
@media only screen and (max-width: 1800px) {
    .avatar {
        display: none;
        justify-content: center;
    }

    .hero {
        justify-content: center;
    }

    footer a {
        font-size: 7rem;
    }
}

@media only screen and (max-width: 1100px) {
    .speechbox p {
        font-size: 3rem;
    }

    footer a {
        font-size: 6rem;
    }
}

@media only screen and (max-width: 600px) {
    .speechbox p {
        font-size: 2rem;
    }

    footer a {
        font-size: 5rem;
    }
}
