* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "polymath", sans-serif;
    font-weight: 300;
    font-style: normal;
    background-color: #bd6d6a;
    color: rgba(255,255,255,0.6);
    min-height: 100vh;
    line-height: 1.6;
}

@media (min-width: 960px) {
    body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        grid-template-areas: "about photo";
    }
}

.about {
    grid-area: about;
}

.photo {
    grid-area: photo;
    background-color: #bd6d6a;
    background-image: url(i/najomie.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
}

.about-text {
    padding: 48px;
    font-size: 18px;
    line-height: 1.8;

    @media (min-width: 960px) {
        padding: 48px 128px;
    }
}

.contact {
    display: flex;
    padding: 0 48px;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;

    @media (min-width: 960px) {
        padding: 0 128px;
        justify-content: flex-start;
        gap: 48px
    }
}

.contact a {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    color: #dfa097;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:focus,
.contact a:hover {
    color: white;
}

.contact svg {
    display: block;
    width: 32px;
    height: 32px;
}
