* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 200;
}

header {
    max-height: 200px;
    background-color: rgb(56, 83, 236);
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

nav {
    background-color: rgb(56, 83, 236);
    width: 80%;
    padding: 10px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img {
    height: 30px;
}

nav ul {
    width: 60%;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a.accedi {
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 20px;
}

.first-section {
    background-image: url(/img/jumbo.png);
    background-size:cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.first-section section {
    width: 50%;
    height: 80%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
}

.first-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.first-section a.Scarica {
    background-color: white;
    color: black;
    padding: 1rem;
    border-radius: 30px;
    text-decoration: none;
}

.first-section div {
    margin-top: 30px;
}

.first-section a.Apri {
    background-color: black;
    color: white;
    padding: 1rem;
    border-radius: 30px;
    text-decoration: none;
}

.second-section {
    background-color: white;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-section div {
    height: 80%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.second-section section {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
}

.second-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.third-section {
    height: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.third-section div {
    height: 90%;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.third-section section {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
}

.third-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.third-section img {
    height: 600px;
    width: auto;
}

.third-section section h2 {
    font-size: 1.7rem;
    margin-bottom: 30px;
}

.third-section img.stelle {
    height: min-content;
}

.third-section a {
    background-color: rgb(64, 64, 153);
    color: white;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
}

.fourth-section {
    background-color: rgb(65, 63, 63);
    height: 550px;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.fourth-section div {
    height: 90%;
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fourth-section section {
    display: flex;
    justify-content: baseline;
    align-items: center;
}

.fourth-section h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: rgb(64, 64, 247);
}

.fourth-section h4 {
    color: rgb(64, 64, 247);
}

.fourth-section img {
    height: 20px;
    width: 30px;
}

.fourth-section a {
    color: white;
    text-decoration: none;
    margin: 10px 0;
}

.fourth-section div.large {
    color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.fourth-section div.thin {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

footer {
    height: 80px;
    background-color: rgb(65, 63, 63);
    display: flex;
    justify-content: center;
    align-items: end;
}

footer div {
    border-top: 1px solid white;
    height: 80%;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer a {
    background-color: rgb(64, 64, 247);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    padding: 15px 25px;
}