 :root {
  --main_text: #000;
  --dark-bg: #18191c;

  --main-bg: #262a31;

  --light-bg: #313946;

  --super-light-bg: #475060;

  --text-color: #7b849c;

  --light-text-color: #ffffff;

  --light-accent: #7395fd;

  --main-accent: #3c6cfc;

  --link-color: #3c6cfc;
  --link-color-hover: #82a1ff;

  --radius: 4px;

  --first-family: "Roboto", sans-serif;
  --second-family: "Yanone Kaffeesatz", sans-serif;

  --base-text: 1rem; /* 16px */

}



body {
    width: 100vw;
    height: 100vh;
    background-color: var(--dark-bg);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: var(--second-family);
    margin: 0;
    font-size: clamp(3rem, 4.5vw, 6rem);
    color: var(--light-text-color);
}

p{
    font-family: var(--first-family);
    color: var(--light-text-color);
    /* font-size: var(--base-text); */
    font-size: clamp(1rem, 1.5vw, 1.5rem);

    margin: 48px 0 20px 0;
    width: 60%;
    line-height: 1.5;
}

.container {
    width: 80%;
    background-color: var(--light-bg);
    display: flex;

    border-radius: var(--radius);

}

.logo_image{
    width: 40%;
}

.image_container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0px 12px 0;
}

.text_container {
    width: 50%;
    padding: 64px 40px 40px 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.robot_image {
    max-width: 80%;
    max-width: 80%;
}

.main-btn {
    display: block;
    padding: 18px;

    border-radius: var(--radius);
    background-color: var(--main-accent);
    color: var(--light-text-color);
    cursor: pointer;
    font-family: var(--first-family);

    transition: all 0.3s ease;

    text-align: center;

    display: inline-block;
    border: none;
    font-size: var(--base-text);

    color: white;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.main-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


.file-link {
    color: var(--link-color);
    text-decoration: none;
    flex-grow: 1;
    font-size: var(--base-text);
    text-align: left;
    line-height: 1.5;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-s);
}

.file-link:hover {
    text-decoration: underline;
    color: var(--link-color-hover);
}

.links_container{
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}


@media (max-width: 1115px) {
    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .text_container {
        width: 80%;
        max-width: 500px;
        padding-top: 24px;
    }
    .image_container {
        width: 100%;
    }
    .robot_image{
        max-height: 400px;
    }
    p{
        width: 100%;
    }
    .links_container{
        gap: 16px;
    }
    
}