*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#000;
    color:white;
}

.hero{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.logo{
    font-size:5rem;
    font-weight:bold;
    margin-bottom:20px;
}

.pong{
    color:white;
}

.hub{
    background:#ff9000;
    color:black;
    padding:5px 15px;
    border-radius:10px;
}

h1{
    margin-bottom:15px;
}

.btn{
    margin-top:25px;
    background:#ff9000;
    color:black;
    text-decoration:none;
    padding:12px 25px;
    border-radius:8px;
    font-weight:bold;
}

#meme{
    min-height:100vh;
    padding:50px;
    text-align:center;
}

#meme img{
    max-width:600px;
    width:90%;
    border-radius:15px;
    margin-top:25px;
}