/* General styles */
body {
    background-color: #eee;
    margin: 0;
}

h1 {
    align-self: center;
}

h2 {
    width: 700px;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 50px;
    font-size: 50px;
    font-weight: bold;
}

p {
    text-align:center;
}

/* Header */
header { 
    display: flex;
    height: 80px;
    margin:15px auto;
    place-content: space-around;
}

#header-logo { 
    display: flex;
}

#header-logo img { 
    margin-right: 50px;
}

nav {
    display: flex;
    align-items: center;
}

#nav-page-buttons {
    display: flex;
    gap: 15px;
}

#nav-page-buttons li {
    cursor: pointer;
    list-style: none;
}

#nav-page-buttons li:hover {
    text-decoration: underline;
}

.page-button {
    cursor: pointer;
}

/* Page holder */
main {
    background-image: url('images/background-tech-chip.jpg');
    color: #eee;
    display: flex;
    justify-content: center;
}

#page-holder {
    width: 80%;
    padding: 50px 0;
}

/* Footer */
footer { 
    padding: 20px;
    text-align: center;
}

/* Pages */
article {
    display: none;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-list {
    width: 350px;
    margin: 10px auto;
    padding: 10px 50px;
    background-color: #eee;
    color:#333;
    border-radius: 30px;
    align-items: left;
}

/* Home page */
#home-contact-button {
    width: 200px;
    height: 50px;
    display: flex;

    justify-content: center;
    background-color: #55f;
    border-radius: 10px;
    place-items: center;
}

.home-button {
    width: 80px;
    height: 30px;
    display: flex;

    justify-content: center;
    background-color: #8bf;
    border-radius: 10px;
    place-items: center;
}

#home-page-list {
    display: flex;
    justify-content: center;
    margin: 50px auto;
    gap: 10px;
}

#home-page-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 250px;
    height: 250px;

    list-style: none;
    text-align: center;
    
    background-color: #eee;
    border-radius: 30px;
    color:#333;
}

#home-page-list li img {
    width: 50px;
    height: 50px;
}