/* background */
body{
    margin: 0;
    padding: 0;
    background-color: hsl(300, 47%, 40%);
}

/* navbar CSS */
.navbar_container{
    background-color: 	hsl(0, 0%, 15%);
    color: white;
    display: flex;
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
}

.navbar_name{
    color: white;
    font-size: 32px;
    margin: 0px;
    padding-left: 1em;
}
p.navbar_name{
    font-family: Segoe UI;
    font-size: 32px;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

/* Title card CSS */
.card_wrap{
    background: hsl(55, 93%, 84%);
    border-radius: 5px;
    height: auto;
    text-align: center;
    margin: 7em auto 0;
    width: 1150px;
}

.card_name{
    border-bottom-style: solid;
    margin: 0 auto;
    padding-bottom: 25px;
    padding-top: 50px;
    width: 1000px;
}
.card_name_wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 25px 0 25px 0;
}

.card_text{
    margin: 0 auto;
    padding: 3em;
    font-family: Segoe UI;
}

/* Socials Icons */
.socials{
    padding: 20px 0 20px 0;
    font-family: Segoe UI;
}

h1{
    text-align: center;
    color: black;
    font-family: Segoe UI;
    font-size: 100px
}

#kritter{
    text-align: center;
    padding: 100px;
}
#socials{
    background-color: #b8611a;
    padding: 5px;
}

/* The GOAT's CSS */
.funny_goat{
    display: flex;
    flex-direction: row-reverse;
}

/* Media Queries */
/* When the screen is less than 920px in width */
@media (max-width: 920px) {
    /* Adjust the orientation of the card and the content*/
    .card_wrap {
        width: 400px;
    }

    .card_name_wrap {
        flex-direction: column;
    }

    .card_name {
        width: 300px
    }

    #site_image {
        
        width: 100%;
    }

    h1 {
        font-size: 55px;
    }

    .card_text {
        padding: 10px;
    }

    .socials{
        padding: 20px;
    }

    #socials_icon {
        width: 25%;
    }
}