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

html,
body {
    height: 100%;
    z-index: 0;
    background-image: url('./assets/backgroundL.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 768px) {

    html,
    body {
        background-image: url('./assets/backgroundS.png');
    }
}


.content-wrapper {
    display: flex;
    height: 100vh;
}


.right {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.left {
    width: 40%;
    height: 100%;
}

@media (max-width: 768px) {
    .left {
        width: 0%;
    }

    .right {
        width: 100%;
    }
}

.bird-image {
    height: 5rem;
    width: 4rem;
}

.email-icon img {
    transition: opacity 0.3s;
}

.email-icon img:hover {
    opacity: 0.7;
    cursor: pointer;
}

.email-footer {
    font-size: 0.8rem;
}

.credits-footer {
    font-size: 0.7rem;
}

.title {
    font-family: "Metal Mania", system-ui;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    background: linear-gradient(180deg, black, black, red);
    -webkit-background-clip: text;
    /* Required for Chrome/Safari */
    background-clip: text;
    color: transparent;
}

.content {
    font-family: "Special Elite", system-ui;
    line-height: 1.8;
}

footer {
    font-family: "Special Elite", system-ui;
    line-height: 1.8;
}