@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap');

body {
    margin: 0;
    min-height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('./stone.png');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    font-family: 'Cormorant Garamond', serif;
    color: #f1f1f1;
}

/* HOME PAGE */

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    height: 100vh;
    text-align: center;
}

h1 {
    font-size: 55px;
    letter-spacing: 12px;
    font-weight: 400;
    margin-bottom: 30px;
}

.divider {
    width: 140px;
    height: 1px;
    background: rgba(255,255,255,0.25);

    margin-bottom: 50px;
    position: relative;
}

.divider::after {
    content: "";

    width: 8px;
    height: 8px;

    background: #f1f1f1;

    position: absolute;

    left: 50%;
    top: -3px;

    transform: translateX(-50%) rotate(45deg);
}

button {
    background: rgba(20,20,20,0.85);
    color: white;

    border: 1px solid rgba(255,255,255,0.15);

    padding: 18px 60px;

    font-size: 22px;
    letter-spacing: 4px;

    font-family: 'Cormorant Garamond', serif;

    cursor: pointer;

    box-shadow: 0 8px 25px rgba(0,0,0,0.45);

    transition: 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    background: rgba(10,10,10,0.95);
}

/* NAMES PAGE */

.names-container {
    max-width: 1300px;
    margin: auto;

    padding-top: 40px;
    padding-bottom: 40px;
}

.names-title {
    text-align: center;

    font-size: 42px;
    letter-spacing: 10px;

    margin-bottom: 15px;
}

.names-divider {
    width: 180px;
    height: 1px;

    background: rgba(255,255,255,0.25);

    margin: auto;
    margin-bottom: 50px;

    position: relative;
}

.names-divider::after {
    content: "";

    width: 8px;
    height: 8px;

    background: #f1f1f1;

    position: absolute;

    left: 50%;
    top: -3px;

    transform: translateX(-50%) rotate(45deg);
}

.names-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 80px;
}

.person {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 5px;

    border-bottom: 1px solid rgba(255,255,255,0.10);

    text-decoration: none;
    color: #f1f1f1;

    transition: 0.25s ease;
}

.person:hover {
    padding-left: 10px;
    background: rgba(255,255,255,0.03);
}

.person-name {
    flex: 1;

    font-size: 22px;

    letter-spacing: 2px;
}

.arrow {
    font-size: 24px;

    opacity: 0.4;
}

/* VIDEO PAGE */

.video-body {
    margin: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

.video-wrapper iframe {
    width: 85vw;
    height: 48vw;

    max-width: 1500px;
    max-height: 840px;

    border: none;

    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
