* {
    margin: 0;
    padding: 0;
}

html {
    background-color: black;
    font-family: "Hubot Sans", sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.content {
    display: flex;
    flex-direction: row;
    max-width: 90%;
    margin: auto;
}

.panel {
    display: flex;
    height: 30vh;
    min-height: min-content;
    border: 7px solid #f2f2f2ff;
    color: #f2f2f2ff;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.25);
    flex: auto;
}

img.portrait {
    max-height: 70%;
    margin-left: 30px;
    margin-right: 30px;
}

img.logo {
    flex: auto;
    object-fit: contain;
    max-height: 50vh;
}

.contact {
    display: flex;
    flex-direction: column;
    width: max-content;
    align-items: center;
    margin-right: 30px;
    font-size: 1.25em;
    margin-top: 30px;
    margin-bottom: 30px;
}

.title, .name, .phone, .mail, .business {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 5px;
}

.title {
    margin-bottom: 15px;
    font-weight: 700;
}

span.material-symbols-rounded {
    margin-right: 10px;
}

.video-container{
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    opacity: 0.5;
}

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 1400px) {
    .content {
        flex-direction: column-reverse;
        max-width: 90%;
        height: 90%;
    }

    .panel {
        max-height: 25%;
        min-height: unset;
        flex: unset;
        margin-bottom: auto;
    }

    img.logo {
        flex: unset;
        margin-top: auto;
        margin-bottom: 50px;
    }
}