* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 900;
}

h1 {
    font-size:30px;
    font-weight: 900;
}

h2 {
    font-size: 30px;
    font-weight: 750;
}

p {
    font-size: 16px;
    font-weight: 400;
    padding: 5px 23px 5px 23px;
}

a {
    text-decoration: none;
    color: #0f0f0c;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 40px;
}

.nav-item {
    font-size: 18px;
    padding: 5px 15px;
    cursor: pointer;
    text-decoration: none;
    color: #0f0f0c;
}
.nav-item:hover {
    background-color: #104172;
    color: #f3f4f5;
    border-radius: 5rem;
}

.logo a {
    font-size: 20px;
    font-weight: 1000;
    text-decoration: none;
    color: #0f0f0c;
    height: 1px;
    width: 120px;
    cursor: pointer;
}

main {
    text-align: center;
    height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action-area {
    padding-bottom: 50%;
}

button {
    border: none;
    color: #f3f4f5;
    background-color: #013568;
    width: 15rem;
    height: 3.5rem;
    border-radius: 5rem;
    cursor:pointer;
    box-shadow: 5px 10px 50px rgb(0, 51, 48);
}

.footer {
    text-decoration: none;
    padding: 0.1rem;
    text-align: center;
    margin: 2rem;
}
