html {
    font-family: 'Raleway', sans-serif;
    font-size: 25px; 
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: none;
}

body {
    background-color: rgb(55, 158, 199);
}

h1 {
    font-size: 50px;
    margin-bottom: 1rem;
}

h2 {
    font-size: 25px;
    color: rgb(202, 202, 202);
}

h3 {
    font-size: 15px;
    font-weight: normal;
    color: rgb(202, 202, 202);
    margin-top: .1rem;
    margin-bottom: .1rem;
}

section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

p {
    margin-top: .05rem;
    margin-bottom: .5rem;
}

.top {
    margin-top: .1rem;
    margin-bottom: .1rem;
}

.weight-normal {
    font-weight: normal
}

.weight-bold {
    font-weight: bold;
}

.style-normal {
    font-style: normal;
}

.style-italic {
    font-style: italic;
}

.spacing-normal {
    letter-spacing: normal;
}

.point-three-em {
letter-spacing: .3em;
}

.point-six-em {
    letter-spacing: -.06em;
}


.underline {
    text-decoration: underline;
}


.line-through {
    text-decoration: line-through;
}

.overline {
    text-decoration: overline;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.capitalize {
    text-transform: capitalize;
}