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

main{
    font-family: "Heebo", sans-serif;
}

html {
    /* min-height: 100vh; */
    background: url(./Background_colors.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    
}

.contribution{
    color: aliceblue;
    font-size: 0.75rem;
    position: absolute;
    bottom: 10px;
    right: 20px;
}

.intro{
    font-family: "Heebo", sans-serif;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    color: aliceblue;
}

.welcome{
    font-size: 3rem;
}

.text{
    font-size: 2rem;
    transform: translateY(40%);
}


@media screen and (max-width: 420px) {
    .contribution{
        color: aliceblue;
        font-size: 0.5rem;
        position: absolute;
        bottom: 5px;
        right: 10px;
    }
    
    .intro{
        font-family: "Heebo", sans-serif;
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translateX(-50%);
        color: aliceblue;
    }
    
    .welcome{
        font-size: 2rem;
    }
    
    .text{
        font-size: 1.3rem;
        transform: translateY(40%);
    }

  }