* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: url(body1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    color: white;
    font-family: Karla, sans-serif;
}

.universe {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
}

/*   Header and Main and Footer   */

header, main, footer {
    background-color: #00000033;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 15px;
    border-radius: 20px;
}

/*   Header   */

header {
    padding: 12px;
    text-align: center;
}

header img {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    box-shadow: 0 0 20px black;
}

header h1 {
    margin: 5px 0;
}

header p {
    font-size: 18px;
}

/*   Main   */

main {
    padding: 20px;
    display: block;
    margin: 40px auto;
    text-align: center;
}

main p {
    font-size: 12px;
}

/* .projects {
    display: flex;
    padding: 3px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
} */

/*   Projects   */

.project{
    display: inline-block;
    width: 35%;
    backdrop-filter: blur(20px);
    -webkit-background-color: #00000070;
    background-color: #00000011;
    min-width: 250px;
    margin: 8px;
    border-radius: 20px;
    padding-bottom: 20px;
}

.project img {
    width: 100%;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

.project:hover {
    box-shadow: 0 0 20px #00000099;
}

.project p {
    margin: 0;
    padding: 0 3px;
    text-align: center;
    font-size: 15px;
}


/*   Footer   */

footer {
    padding: 12px;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

footer li {
    padding: 2px 20px;
    display: inline;
}

footer img{
    padding: 3px;
}

footer img:hover {
    background-color: #00000033;
    border-radius: 100%;
}

#other {
    margin: 10px 0 0 0;
    font-size: 10px;
    color: grey;
}

#other a {
    color: grey;
}

#other a:hover {
    color: white;
}