﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #050401;
}

.page {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: max-content 1fr auto;
    grid-template-areas: "header"
        "content"
        "footer";
    background-color: #050401;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.header {
    width: 100%;
    height: 100%;
    grid-area: header;
    background-color: #222;
    padding: 1.4em;
    display: grid;
}

    .header h2 {
        color: #fffaff;
        font-size: 1.2rem;
    }

.content-container {
    width: 100%;
    height: 100%;
    grid-area: content;
    display: flex;
    background-image: url(../images/office-865091_1920.jpg);
    background-size: cover;
    background-color: #050401;
}

.content {
    padding: 48px;
    margin: auto;
    background-color: rgba(5, 4, 1, 0.3); /* Semi-transparent background */
    backdrop-filter: blur(10px) saturate(180%); /* Acrylic effect */
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #fffaff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    width: max-content;
    height: max-content;
    box-shadow: 0px 0px 50px rgba(224, 224, 224, 0.05);
}


    .content .company-name {
        font-size: 5rem;
    }

    .content .company-owner {
        font-size: 3rem;
        margin-bottom: 24px;
    }

.footer {
    padding-block: 2em;
    grid-area: footer;
    background-color: #222;
    color: #fffaff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

address {
    display: grid;
    color: #fffaff;
    row-gap: 8px;
}

a {
    color: #fffaff;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }
