html {
    background: rgba(215, 212, 212, 0.452);
    color: #fff;
}

.header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    background-color: black;
    width: 100%;
    border-radius: 0;
    min-height: 80px;

}

.header h1 {
    font-size: 70px;
    margin-left: 60px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(0, 0, 0, 0.715);
    border-radius: 10px;

}

.info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 60px;
    font-family: 'Times New Roman', Times, serif;
    aspect-ratio: 20 / 9;

}

.info1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(0, 0, 0, 0.715);

}

.info2 {
    font-family: 'Times New Roman', Times, serif;
    color: black;

}

.info3 {
    font-family: 'Times New Roman', Times, serif;
    color: black;

}

.info4 {
    font-family: 'Times New Roman', Times, serif;
    color: black;
}

.info4 img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(0, 0, 0, 0.715);

}

.footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: black;
    color: white;

    width: 100%;
    border-radius: 0;
    min-height: 80px;
    padding: 0px;
}

.footer p {
    margin-left: 10px;
    padding: 1px;
    margin: 0px;
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
}

a {
    color: inherit;
    text-decoration: none;
}