@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Oswald", sans-serif;
    background: black;
    display: flex;
    justify-content: center;
}

.body-container {
    width: 100%;
    max-width: 1200px;
}

.logo img {
    height: 50px;
}

.head-img {
    display: flex;
    flex-direction: row;
}

.head-img img {
    position: absolute;
    opacity: 0.2;
    filter: blur(5px);
    -webkit-user-drag: none;
}

.head-img img:first-child {
    left: -50px;
    width: 900px;
}

.head-img img:last-child {
    right: 0;
    width: 800px;
    top: -150px;
}

@media (max-width: 1000px) {
    .head-img img {
        filter: blur(3px);
    }

    .head-img img:first-child {
        left: -50px;
        width: 400px;
    }

    .head-img img:last-child {
        right: 0;
        width: 400px;
        top: 300px;
    }
}

.header-position, .circles-position {
    display: flex;
    justify-content: space-between;
}

.header-position {
    margin-right: 100px;
    margin-left: 100px;
    margin-top: 20px;
}

@media (max-width: 1000px) {
    .header-position {
        margin-right: 20px;
        margin-left: 20px
    }
}

.register-position, .circles-position {
    position: relative;
    z-index: 5;
    width: 50%;
}

.register-position .circles {
    margin-left: 40px;
}

@media (max-width: 1000px) {
    .register-position .circles {
        margin-left: 20px;
    }
}

.register-position {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1000px) {
    .register-position, .circles-position {
        position: relative;
        z-index: 5;
        width: 100%;
    }

    .register-position {
        margin-top: 10px;
        display: flex;
        justify-content: center;
    }

    .header-position {
        display: flex;
        flex-direction: column;
    }
}

.promo {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 48px;
    font-weight: 300;
    color: white;
    text-align: center;
    z-index: 5;
    position: relative;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 -20px 20px -20px #e9daff, /* top */ 0 20px 20px -20px #e9daff; /* bottom */
}

@media (max-width: 1000px) {
    .promo{
        font-size: 40px;
        height: 60px;
        padding: 20px 0;
        border-top: 1px solid white;
        border-bottom: 1px solid white;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

.general-position {
    display: flex;
    justify-content: space-evenly;
    height: 100%;
}

.column {
    width: 30%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1000px) {
    .general-position {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }

    .column {
        width: 80%;
    }
}

.block {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 40px;
}

.block img {
    width: 100%;
    aspect-ratio: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.block:hover img {
    opacity: 0.7;
}

.save {
    position: absolute;
    z-index: 5;
    color: transparent;
    font-size: 28px;
    font-weight: 200;
    right: 20px;
    top: 20px;
    width: 100px;
    text-align: center;
    height: 40px;
    border-radius: 10px;
}

@media (max-width: 1000px) {
    .save{
        background: #dcc8f6;
        color: white;
    }
}

.block:hover .save {
    background: #dcc8f6;
    color: white;
}

.save:hover {
    box-shadow: 0 0 20px #e9daff;
    color: black !important;
    background: #f7f7fc !important;
}