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

}

/* fonts */

@font-face {
    font-family: FuzzyBubbles-Regular;
    src: url(../fonts/FuzzyBubbles-Regular.ttf) 
}


/* Nav */

header {
background-color: rgb(216, 236, 253);
padding: 15px;
}

body{
    background-color: rgba(235, 247, 255, 0.872);
}

nav {
list-style: none;
text-align: center;
    font-family: FuzzyBubbles-Regular;
}

nav a {
color: rgb(85, 138, 183);
display:inline-block;
margin:15px

}

/* title thing */

h1{
    margin-top: 40px;
    text-align: center;
    font-family: FuzzyBubbles-Regular;
    color: rgb(88, 122, 201);

}

h2 {
    font-family: FuzzyBubbles-Regular;
    font-size: 20px;
    text-align: center;
    margin: auto;
    max-width: 500px;
  

}

figure{
text-align: center;
padding: 10px 14px;
gap: 30px;
color: rgb(31, 31, 49);
font-family: FuzzyBubbles-Regular;
}

#grids {
display:contents;
    justify-content: left;
    align-items:center;
    margin-top: 40px;
}

/* everything w gallery, application*/
.gallery {
    width: 500px;
    max-width: 100%;
    
}

#about-me {
    padding: 50px 20px;
    background-color: rgb(76, 116, 168);
    color:rgb(255, 254, 236);

}

#about-me h2 {
font-family: FuzzyBubbles-Regular;
text-align:center;
font-size: 25px;
margin-bottom: 40px;
}

#about-me article {
text-align:left;
    font-family: FuzzyBubbles-Regular;
 max-width: 1100px;
 margin: auto;
}

#about-me section {
    font-size: 18px;
    line-height: 1.6;

}

/* how i made it so the sticker and text be next to each other */

    #about-me article section {
        display:inline-block;
        vertical-align: top;
        width:45%
    }

    #about-me article figure{
        display: inline-block;
        vertical-align: top;
        width: 45%; 
    } 

/* sticker Sizing */

#about-me article figure img{
        width: 250px;
        border-radius: 12px

    }

#art-gallery {
text-align: center;
background-color: rgb(76, 116, 168);

}



#art-gallery h2{
    font-family: FuzzyBubbles-Regular;
    color: aliceblue;

    /* making it so the images can be in a row */
}
#art-gallery figure {
    width: 350px;
    display:inline-block;
    margin: 10px;

}

#art-gallery img {
    width:250px;
    gap: 20px;
}
 
/* code for my socials css */

footer {
    background-color: rgb(0, 0, 0);
    padding: 40px 20px;
    text-align: center;
    color: white;
}

#socials {
    color: aliceblue;
    display: contents;
    justify-content: center;
    gap: 25px;
}

/* mobile */

@media (max-width:768px) {

    #about-me article section {
        display: block; 
        width: 100%;
        text-align: center
    }

    #about-me article figure {
        display: block;
        width: 100%;
    }
 

    #about-me article img{
        max-width: 200px;

    }

    #art-gallery img{
        width:80%;
    }
}


