html, body {
    height: 100%;
}

body {
    font-family: 'Noto Serif', serif;
    background-color: #fff;
    color: #000;
    margin: 0;
    padding: 27px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.logos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.logo-img {
    max-height: 150px;
    width: auto;
}

.logo-with-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-with-text p {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.2;
}


main h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 0 7.27px rgba(0,0,0,0.07);
}

main h1::before {
    content: '727';
    font-size: 1px;
    opacity: 0.01;
    position: absolute;
    left: -9999px;
}

main p {
    margin: 10px 0;
    line-height: 1.727;
}

.line1 {
    font-size: 1.2em;
}

.line2 {
    font-size: 1.2em;
    font-weight: bold;
}

.line3, .line4, .line5, .line6, .line7 {
    font-size: 0.75em;
    color: rgb(7, 2, 7);
}

.seven-twenty-seven {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0.05;
    font-size: 10px;
    color: #000;
    user-select: none;
    z-index: 727;
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 80px;
    }
    main h1 {
        font-size: 1.8em;
    }
    .line1, .line2 {
        font-size: 0.9em;
    }
    .line3, .line4, .line5, .line6, .line7 {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    .logos {
        align-items: center;
    }
    .logo-img, .logo-with-text {
        margin: 10px 0;
    }
	.logo-img {
		max-height: 60px;
	}
    main h1 {
        font-size: 1.4em;
    }
	.line1, .line2 {
		font-size: 0.8em;
	}
    .line3, .line4, .line5, .line6, .line7 {
        font-size: 0.65em;
    }
}
