/* RESET CSS */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* css */

body{
    
    background-color: #8B939C;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-image: url("../IMG/Computador.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;

}

.caixa{
margin-right: 1000px;
}

h1{
    font-size:60px;
    font-family: sans-serif;
    font-weight: 60px;
    color: orange;
    text-align: center;
    border: solid #fff 4px;
    border-radius: 100px;
    margin: 20px;
}

h2{
    font-size: 48px;
    font-family: sans-serif;
    font-weight: 60px;
    gap: 10px;
    display: flex;
    justify-content: center;
}

.dev{
        background-color: transparent;
        color: black;
        padding: 12px 20px;
        transition: 0.5s;
        border: solid #fff 4px;
        border-radius: 100px;
}

.dev:hover{
    background-color: transparent;
    padding: 12px 100px;
    color: gold;
}


.front{
  background-color: transparent;
  transition: 0.5s;
  padding: 12px 20px;
  border: solid #fff 4px;
  border-radius: 100px;
  color: black;
}

.front:hover{
    background-color: transparent;
    padding: 12px 100px;
    border: solid #fff 4x;
    color: gold;
}

h1:hover{
    color: black;
    transition: 1s;
    border: solid #fff 4px;
}

.social-container{
    display: flex;
    justify-content: space-between;

}

.social-container img{
    margin: 25px;
    width: 150px;
    height: 150px;
   border-radius: 200px;

}
