/*
    body -- HTML element
    # -- ID (Single Use)
    . -- Class (Multiple Use)
*/
@import url('https://fonts.googleapis.com/css2?family=Reenie+Beanie&display=swap');
*{
    margin: 0;
    padding: 0;
}

:root{
    --qwertyu: #B19CD9;
    --asdfghj: #808;
}

body {
    background-color: #9C51B6;
}
#main{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#front{
    height: 250px;
    width: 400px;
    border: solid #000000 2px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}
#front h1{
    color: rgb(255, 255, 255);
    font-size: xxx-large;
    font-family: 'Reenie Beanie', monospace, sans-serif;
}
#social{
    padding: 10px;
    display: flex;
    gap: 30px;
    font-family: 'Reenie Beanie';
    font-size: xx-large;
}
#social a{
    text-decoration: none !important;
    color: bisque;
}
#topimg{
    position: relative;
    bottom: 5px;
}
#bottomimg{
    position: relative;
    top: 10px;
}
