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

img {
    height: 100%;
    width: auto;

    margin: 0%;
    display: block;
}

header {
    width: 100%;
    height: 50px;

    background-color: #5cb2e8;

    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    width: 100%;
    height: 60px;

    background-color: #5cb2e8;


    position: fixed;
    bottom: 0px;

    display: flex;
    justify-content: center;
    align-items: center;
}

footer > a {
    color: #ffffff;
    text-decoration: none; 

    font-size: 1rem;
    margin-left: 10px;
}

main {
    background-color: #e5e5e5;

    display: flex;
    justify-content: center;
    align-items: center;
}

#inner-div {
    
    max-width: 1000px;
    background-color: #ffffff;

    padding: 1.5em;
}

#inner-header {
    height: 100%;
    max-width: 1000px;
    width: 100dvw;
    text-align: right;
}

h2 {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
h4 {
    font-size: 1.1rem;
}
p {
    font-size: 1rem;
}

/* text classes */
.ewu-paragraph {
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
    width: calc(100% - 2rem);
    margin-bottom: 3rem;
}
.ewu-paragraph > p {
    margin-bottom: 1rem;
}
.ewu-paragraph > h4 {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.ewu-dataprotection-list {
    list-style: none;
    padding-left: 1rem;
}
.ewu-dataprotection-list > li {
    margin-bottom: 1.2rem;
}
.ewu-dataprotection-list > li > h4 {
    margin-bottom: 1.2rem;
}

.ewu-button {
    background-color: #007DB1;
    border: none;
    margin-top: 56px;
    padding: 16px 32px 16px 32px;
    border-radius: 8px;
    font-family: Figtree;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    letter-spacing: 0.01em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
}
.ewu-button:hover {
    background-color: #118ec2;
}
