* {
    margin: 0; padding: 0; border: 0; box-sizing: border-box;
}

body {
    background-color: #054A91;
    width: 1920px;
    height: auto;
    font-family: 'Noto Sans', sans-serif;
    color: #292E1E;
}

#wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header {
    margin-top: 50px;
}

#pageTitle {
    font-family: 'Young Serif', serif;
    font-size: 80px;
    text-decoration: underline;
    color: #DBE4EE;
    transition: color 0.5s;
}

#pageTitle:hover {
    color: #F17300;
}

#content {
    width: 90%;
    height: 600px;
    margin-top: 50px;
    display: flex;
    flex-direction: row;
}

#description {
    width: 45%;
    height: 100%;
    background: linear-gradient(#DBE4EE, transparent);
    border-radius: 4px;
}

#welcome {
    font-family: 'Young Serif', serif;
    font-size: 35px;
    padding: 10px;
}

.paragraph {
    font-size: 20px;
    padding: 10px;
}

#navContain {
    width: 45%;
    height: 100%;
    border-radius: 4px;
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

#navContain a {
    display: block;
    padding: 10px 20px;
    background-color: #009F93;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    align-items: center;
    font-size: 20px;
    font-weight: bolder;
    justify-content: center;
}

#navContain a:hover {
    background-color: #00665E;
}