html {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    text-align: center;
}

p {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5;
}

.image1 {
    min-height: 100vh;
    background-image: url("../img/mountain.webp");
}

.image2 {
    background-image: url('../img/mountain2.webp');
}

.image3 {
    background-image: url('../img/praxis.webp');
}

.front-site {
    width: 100%;
    min-height: 100vh;
    gap: 3rem;
}

.column-section {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 62.5rem;
    backdrop-filter: blur(1.25rem);
    border-radius: 1.5rem;
}

.column-section > div {
    width: 33%;
}

@media (max-width: 600px) {
    .column-section {
        flex-direction: column;
    }

    .column-section > div {
        width: 100%;
    }
}

.decent-text {
    font-size: 0.875rem;
    color: #999999;
}

.column-section > div {
    text-align: center;
}

.column-section > div > p:first-child {
    font-weight: bold;
}

.header-name {
    font-size: 5rem;
}

.header-physiotherapy {
    font-size: 2rem;
}

h1 {
    margin-bottom: 3.75rem;
}

footer {
    padding: 3.125rem 0;
    color: white;
    background-color: #222;
}

.about-me {
    align-items: center;
    text-align: left;
}

.contact {
    text-align: left;
    gap: 6.25rem;
}

.portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/portrait.webp");
}

.about-me > div {
    width: 50%;
}

.phone, .mail {
    cursor: pointer;
}

.phone:hover, .mail:hover {
    opacity: 0.3;
}