* {
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

::selection {
    background-color: #555;
    color: #ddd;
}

:root {
    --color-grey-dark: #444;
    --color-font-blue: #6C757D;
    --background-color-orange: #FF8C42;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #e8edef;
    font-family: "Playfair Display", serif;
    letter-spacing: 2px;
}

h1 {
    color: var(--color-font-blue);
}

h1:hover {
    cursor: pointer;
}

h2{
    font-size: 6vmin;
}

p {
    font-size: 2.4vmin;
    line-height: 1.6;
    text-wrap: balance;
}

ol,
ul {
    list-style: none;
}

a {
    color: var(--color-font-blue);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: .5s;
}

a:hover {
    color: #E9ECEF;
}

.header {
    width: 100%;
    padding-inline: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: var(--color-grey-dark);
    height: 10vh;
    z-index: 1;
}

.header ul {
    display: flex;
    font-size: 32x;
    gap: 50px;
}

.hero{
    height: 50vh;
    background-color: #4A90E2;
    color: #343A40;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.hero h2{
    margin-top: 10vh;
}

.hero p{
    margin-top: 1vh;
    font-size: 2.4vmin;
    width: 50%;
}

.container {
    display: flex;
    height: 100vh;
}

.container img {
    height: 80%;
    width: 40%;
    border-radius: 10px;
    margin: 15vh 5vh;
    transition: .5s;
    opacity: .7;
    box-shadow: var(--color-grey-dark) 10px 10px 15px;
}

.container img:hover {
    opacity: 1.1;
}

.robo-text {
    padding-left: 5%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:  var(--color-grey-dark);
}

.robo-text h2 {
    align-content: flex-start;
    margin-bottom: 1vh;
}

.robo-text p {
    width: 80%;
    text-align: justify;
}

.info {
    font-family: "Raleway", sans-serif;
    margin-top: 3vh;
    padding: 1vh 1.5vw;
    width: 20vw;
    background-color: var(--background-color-orange);
    border-radius: 7px;
    transition: .8s;
}

.info:hover {
    background-color: transparent;
    border: var(--color-grey-dark) 1px solid;
    scale: 1.05;
}

.info p {
    color: var(--color-grey-dark);
    font-weight: 700;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 5vw;
    width: 50%;
    border-radius: 7px;
    gap: 3vh;
    color:  var(--color-grey-dark);
}

.box h2 {
    text-align: center;
    text-wrap: balance;
    margin: 4vh 3vw;
}

.box-content {
    background-color: var(--background-color-orange);
    border: 2px solid transparent;
    text-align: justify;
    padding: 10px;
    border-radius: 7px;
    width: 80%;
    transition: .5s;
}

.box-content:hover {
    scale: 1.05;
    background-color: transparent;
    border: 2px solid var(--color-grey-dark)
}

.box-content h3 {
    text-align: center;
    font-size: 3vmin;
    margin-bottom: 10px;
}

.box-content p{
    font-size: 2.4vmin;
}

.galeria{
    color: var(--color-grey-dark);
    border: 1px solid #444;
    width: 100vw;
    display: flex;
    justify-content: center;
    margin: 15vh 10vh 10vh;
    padding: 5vh 5vw;
}