body {
    background: #000000;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: Verdana, sans-serif;
}

* {
    box-sizing: border-box;
}

.main {
    margin-top: 40px;
    max-width: 1024px;
    display: flex;
    align-self: center;
    flex: 1;
}

footer {
    color: #8efdf9;
    margin: 0;
    font-size: 20px;
    align-self: center;
    padding: 20px 0;
    text-align: center;
    z-index: 10;
}

.left {
    width: 40%;
}

.right {
    width: 60%;
    z-index: 10;
}

.background {
    background-image: url(../img/bg.jpeg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000000;
    width: 100%;
    height: 100%;
    margin-left: 60px;
}

.logo {
    display: block;
    width: 100%;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.description {
    margin-top: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.description p {
    min-width: 75%;
    align-self: flex-end;
    color: #8efdf9;
    padding: 0;
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.01rem;
}

.contacts {
    margin-top: 115px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contacts p {
    align-self: flex-end;
    min-width: 35%;
    color: #8efdf9;
    padding: 0;
    margin: 0;
    font-size: 20px;
    letter-spacing: 0.01rem;
}

.contacts a,
.contacts a:hover,
.contacts a:active,
.contacts a:focus {
    color: #8efdf9;
    font-size: 20px;
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    .logo {
        padding: 20px;
    }

    .main {
    }

    .left {
        width: 0;
        position: relative;
    }

    .background {
        bottom: 0;
        margin-left: 0;
        width: 50%;
        height: 100%;
        position: fixed;
        background-position: left bottom;
    }

    .right {
        width: 100%;
    }

    .description,
    .contacts {
        margin-top: 30px;
        padding: 0 10px;
    }

    .description p,
    .contacts p {
        width: 100%;
        text-align: right;
    }
}