@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 17px;
    font-family: "Roboto", sans-serif;
}

body {
    max-width: 1000px;
    margin: auto;
    padding: 20px 8%;
}

a {
    text-decoration: none;
    color: rgb(0, 150, 255);
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
}

header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

main {
    padding: 50px 0;
}

main,
form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

form {
    max-width: 350px;
    width: 100%;
    padding: 60px 20px;
    box-shadow: 2px 2px 10px 2px rgb(200, 200, 200);
}

button {
    padding: 10px;
    border: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background: rgb(0, 150, 255);
}

form input,
form button,
form select {
    width: 100%;
    padding: 8px 15px;
}

form input,
form select {
    border: 1px solid rgb(150, 150, 150);
}

footer {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo div {
    font-size: 25px;
    font-weight: bold;
}

#logo img {
    width: 40px;
    height: 40px;
}

#menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#menu a {
    color: rgb(150, 150, 150);
}

#menu a:hover {
    color: rgb(0, 150, 255);
}

#latest-apps,
#random-app,
#app-list {
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

#app {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 2px 2px 10px 2px rgb(200, 200, 200);
}

#app-info {
    padding-left: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

#app-category {
    font-size: 14px;
    color: rgb(150, 150, 150);
}

#app img {
    width: 60px;
    height: 60px;
}