* {
    margin: 0; padding: 0; box-sizing: border-box;
}
body {
    font-family: sans-serif;
    font-family: "Nunito-Regular";
    background-color: #F5F5F5;
}
h1 {
    color: #1E1E1E;
    font-size: 10vw;
    font-family: "Nunito-Black";
    text-align: center;
}
p {
    font-size: 15px;
}
b {
    font-size: 10px;
    font-weight: 100;
    text-align: left;
    font-family: "Roboto-Light";
}
.flex {
    display: flex; /*--flex--*/
    justify-content: center;
    align-items: center;
}




.Roboto {
    font-family: "Roboto-Regular";
}
.OpenSans {
    font-family: "OpenSans-Regular";
}
.Lato {
    font-family: "Lato-Regular";
}
.Montserrat {
    font-family: "Montserrat-Regular";
}
.Oswald {
    font-family: "Oswald-Regular";
} 
.Raleway {
    font-family: "Raleway-Regular";
}
.Merriweather {
    font-family: "Merriweather-Regular";
}
.Nunito {
    font-family: "Nunito-Regular";
}
.Inter {
    font-family: "Inter-Regular";
}
header {
    width: 100%;
    height: 10vh;
    padding: 1em 1em 0em 1em;
}
nav {
    border-radius: 2em;
    background-color: #1E1E1E;
    display: flex;
    justify-content: space-between;
}
nav ul {
    display: flex;
}
nav ul li {
    width: 100px;
    padding: 0.5em;
    margin: 0.5em;
    border-radius: 2em;
    background-color: #CC7722;
    list-style-type: none;
    text-align: center;
}
nav ul li a {
    color: #F5F5F5;
    text-decoration: none;
}
nav ul li a:hover {
    color: #CC7722;
}
#home {
    width: 100px;
    padding: 0.5em;
    margin: 0.5em;
    border-radius: 2em;
    border: 1px solid #CC7722;
    text-align: center;
}
#home a {
    color: #F5F5F5;
    text-decoration: none;
}
@media (max-width: 800px) {
    header {
        padding: 0;
    }
}
/*------------------------------------------------------------*/
main {
    width: 100%;
    height: 80vh;
    padding: 0em 1em 0em 1em;
}
@media (max-width: 800px) {
    main {
        padding: 0;
    }
}
/*------------------------------------------------------------*/
.ticker {
    width: 100%;
    height: 20vh;
    overflow: hidden;
    white-space: nowrap;

    display: flex;
    align-items: center;
}
@media (max-width: 800px) {
    .ticker {
        height: 10vh;
    }
}
.ticker__track {
animation: scroll 30s linear infinite;
}
.word {
display: inline-block;
color: #1E1E1E;
font-size: 10vw;
font-family: "Nunito-Black";
}
.word b {
    font-size: 10vw;
    color: #CC7722;
    font-family: "Nunito-Black";
}
@keyframes scroll {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
/*------------------------------------------------------------*/
.section2 {
    width: 100%;
    height: 60vh;
    padding: 1em;
    border-radius: 2em;
    background-color: #1E1E1E;

    display: grid;
    gap: 1em;
    grid-template-columns: repeat(4, 1fr);
}
h2 {
    color: #1E1E1E;
    font-family: "OpenSans-Regular";
}
.box {
    width: 100px;
    height: 50px;
    padding: 1em;
    border-radius: 2em;
    background-color: #F5F5F5;

    display: flex;
    justify-content: center;
    align-items: center;
}
.section2 a {
    color: #1E1E1E;
    text-decoration: none;
}
@media (max-width: 800px) {
    .section2 {
        border-radius: 2em 2em 0em 0em;
    }
}
/*------------------------------------------------------------*/
footer {
    width: 100%;
    height: 10vh;
    border-top: 1px solid #1E1E1E ;

    display: flex;
    justify-content: center;
    align-items: center;
}
footer ul {
    display: flex;
}
footer ul li {
    padding-right: 1em;
    list-style-type: none;
}
footer ul li a {
    color: #1E1E1E;
    text-decoration: none;
}