header {
    text-align: center;
}

.logo {
    margin-bottom: 20px;
    border: 1px solid #000;
    border-radius: 3px;
    height: 280px;
    width: 280px;
}

.menu {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    text-decoration: underline;
}

h1 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

h2 {
    font-size: 30px;
    margin-bottom: 10px;
}


ul {
    margin-bottom: 30px;
}

ul>li {
    font-size: 20px;
}

.content {
    display: grid;
    grid-template-columns: 1fr 1fr;

    justify-items: center;

}


.next {
    margin-top: 15px;
    padding: 5px 10px;

    background-color: #9d9d9d;
    color: #000000;
    font-weight: bold;
    font-size: 30px;
    border-radius: 3px;
}

.next:hover {
    color: white;
    cursor: pointer;

}