@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Jura:wght@400;600&display=swap');

* {
    box-sizing: border-box;
}
html {
    height: 100%;
}
body {
    font-family: 'Jura', sans-serif;
    font-size: 21px;
    line-height: 1.5em;
    color: #fff;
    background-color: #000;
    margin: 80px;
}
.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.bg video {
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}
.logo {
    margin-bottom: 160px;
}
.wrap {
    max-width: 800px;
    margin: auto;
    text-align: center;
}
p {
    margin: 0 0 1em 0;
    text-shadow: 4px 4px 8px #000;
}
a.contact {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    margin-top: 1em;
    font-weight: 600;
    display: inline-block;
    position: relative;
}
.align {
    display: flex;
    gap: 10px;
    align-items: center;
}
.corner-top-left,
.corner-top-right,
.corner-bottom-left,
.corner-bottom-right {
    background: transparent;
    width: 5px;
    height: 5px;
    position: absolute;
    transition: all .3s ease-in-out;
}
.corner-top-left {
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    top: 0;
    left: 0;
}
.corner-top-right {
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    top: 0;
    right: 0;
}
.corner-bottom-left {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    bottom: 0;
    left: 0;
}
.corner-bottom-right {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    bottom: 0;
    right: 0;
}
a:hover .corner-top-left,
a:hover .corner-top-right,
a:hover .corner-bottom-left,
a:hover .corner-bottom-right {
    width: 50%;
    height: 50%;
}

@media screen and (max-width: 800px) {
    body {
        font-size: 18px;
        margin: 30px;
    }
    .logo {
        margin-bottom: 60px;
    }
    .logo img {
        height: 30px;
    }
}