* {
    box-sizing: border-box;
}

body,
html {
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    margin: 150px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 360px;
}

.info-box {
    background-color: #FF3B3B;
    padding: 40px;
    border-radius: 14px;
    color: white;
    font-size: 45px;
    font-weight: 500;
    width: 620px;
    text-align: center;
    margin-top: 50px;
}

.info-box>hr {
    width: 200px;
    margin: 40px auto;
}

.bottom-info {
    font-size: 20px;
    font-weight: 700;
    color: #eeeeee;
}

footer {
    text-align: center;
}

a {
    color: white;
}