/* McBling Homepage Styles */

/* Background image */
body {
    background-image: url("mainpagebackgroundv2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    font-family: "Comic Sans MS", cursive;
    text-align: center;
}

/* Headline */
h1 {
    font-size: 40px;
    text-shadow: 2px 2px 5px black;
}

/* Links/buttons */
.links a {
    text-decoration: none;
    background: white;
    color: hotpink;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 2px;
}




.welcome-text {
    display: flex;                /* use flexbox */
    justify-content: center;      /* horizontal centering */
    align-items: center;          /* vertical centering inside viewport */
    height: 100vh;                /* full viewport height */
    margin: 0;
}

.welcome-section img {
    height: 200px;
    margin: 0 5px;
    display: inline-block;
    transition: transform 0.2s;
}

.welcome-text img:hover {
    transform: scale(1.2) rotate(5deg);
    transition: 0.2s;
}

.secondarytext img {
    width: 80%;
    max-width: 600px;
    display: block;
    margin: 300px auto 20px auto;
}