* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #eee;
    font-weight: 500;
    color: #e93d3d;
    width: 1280px;
    margin: auto;
}

header {
    height: auto;
}

.main-title {
    display: flex;
    align-items: center;
    justify-content: start;
    margin: 20px 0px;
}

.main-title img {
    height: 150px;
}

.title-text {
    font-size: 7rem;
}

hr {
    color: #e93d3d;
}

main, footer {
    display: flex;
    margin: 10px 0px;
}

.column {
    display: flex;
    flex-direction: column;
    margin-right: 70px;
}

iframe {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: none;
}

.item a {
    color: inherit;
    text-decoration: none;
}

footer {
    justify-content: center;
}