html {
    height: 100%;
}

body {
    position: relative;
    margin: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    color: white;
    font-family: Nunito, sans-serif;
}

.picture-viewer {
    font-family: inherit;
    font-size: 1.8em;
    position: fixed;
    top: 10px;
    left: 10px;
    border-radius: 40px;
    border: 2px solid #444;
    padding: 2px 10px;
    cursor: pointer;
    background-color: gray;
    transition: background-color 0.5s;
}

.picture-viewer:hover {
    background-color: #77f;
}

.logged-in {
    position: relative;
    top: 0;
    left: 0;
}

.logged-in span {
    background-color: green;
    font-size: 20px;
    border-radius: 3px;
    padding: 0 3px;
}

.flexbox {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid black;
    border-radius: 20px;
    background-color: #444;
    padding: 9px 2px 8px 0px;
    width: 294px;
}

.search-box {
    background-color: darkgray;
    border-radius: 24px;
    font-size: 24px;
    border: 2px solid #444;
    padding: 5px 8px;
    color: black;
    margin-bottom: 12px;
    width: 280px;
}

.apps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.apps div {
    margin: 10px;
    height: 80px;
    width: 80px;
    border-radius: 18px;
    background-color: #ddd;
    position: relative;
    top: 0px;
    transition: top 0.3s;
}

.apps div:hover {
    top: -10px;
}

.apps div img {
    width: 100%;
    height: 100%;
}

.github-svg, .wordpress-svg {
    padding: 5px; 
    box-sizing: border-box; 
}

.instagram {

}

.playstore-svg {
    padding: 10px;
    box-sizing: border-box;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 8px 8px 16px;
    width: 100%;
    text-align: center;
    background-color: black;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}		