@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
    background-color: #fbff03; 
    background-image: radial-gradient(#000000 1px, transparent 0);
    background-size: 40px 40px; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    
}

.logo 
{
    background: #ffffff;
    padding: 2rem 3rem;
    border: 4px solid #000000;
    box-shadow: 10px 10px 0px #000000; 
    transform: rotate(-2deg); 
    transition: all 0.2s ease;
}


.logo:hover 
{
    transform: rotate(0deg) scale(1.1); 
    box-shadow: 15px 15px 0px #ff0000; 
    cursor: pointer;
}

h1 
{
    font-family: 'Archivo Black', sans-serif;
    font-size: 3rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.memes
{
    display : inline-block;
    padding : 1rem 1.5rem;
    background-color : #ff0000;
    border: 3px solid #000000;
    box-shadow: 5px 5px 0px #000000;
    position: absolute;
    left: 80px;
    top: 50px;
    transition: transform 0.1s;
}

.memes:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px #000000;
}

.memes a {
    color: white;
    font-size : 1rem;
    font-family: 'Archivo Black', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}

.songs
{
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: #ff0000;
    border: 3px solid #000000;
    box-shadow: 5px 5px 0px #000000;
    position: absolute;
    right: 80px;
    top: 50px;
    transition: transform 0.1s;
}

.songs:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px #000000;
}

.songs a {
    color: white;
    font-size : 1rem;
    font-family: 'Archivo Black', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}

.old
{
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: #ff0000;
    border: 3px solid #000000;
    box-shadow: 5px 5px 0px #000000;
    position: absolute;
    left: 80px;
    bottom: 50px;
    transition: transform 0.1s;
}

.old:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px #000000;
}

.old a {
    color: white;
    font-size : 1rem;
    font-family: 'Archivo Black', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}

.news
{
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: #ff0000;
    border: 3px solid #000000;
    box-shadow: 5px 5px 0px #000000;
    position: absolute;
    right: 80px;
    bottom: 50px;
    transition: transform 0.1s;
}

.news:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px #000000;
}

.news a {
    color: white;
    font-size : 1rem;
    font-family: 'Archivo Black', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}


/* Used gemini on this didnt know how to do it myself hahhaha :) */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    .logo {
        padding: 1.5rem;
        margin: 1rem;
    }
    .memes{
        position: static;
        margin-bottom: 20px;
    }
}
