
@import url('https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles&family=Press+Start+2P&display=swap');


/*Acá voy a darle estilos al body en general*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: grey;
}

.image-container{
    display: flex;
}

.image-container img {
    width: 100%;
}

/* Aca voy a darle estilos exclusivamente al header*/

header {
    background-color: rgb(29, 28, 28);
    padding: 10px 150px;
}

#logo {
    width: 300px;
}

#logo img {
    border-radius: 20px;
    border: 2px solid white;
}

/* Acá están los estilos del hero*/

#hero {
    position: relative;
}

#hero #computadora {
    display:inline-block;
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

#hero .info-container {
    position: absolute;
    top: 5%;
    left: 0;
    display: flex;
    padding-left: 150px;
    padding-top: 50px;
    font-family: 'Fuzzy Bubbles', cursive;
    width: 100%;
    font-size: 30px

}

#hero .info-container #foto {
    display: inline-block;
    position: relative;
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid black;
}

#hero .info-container #foto img {
    width: auto;
    height: 100%;
    margin-left: -25px;
}

#hero .info-container .informacion{
    padding-left: 20px;
    font-weight: bold;
    width: calc(100% - 200px)
}

#hero .info-container .informacion span {
    display: inline-block;
    color: rgb(43, 42, 42);
    margin-bottom: 30px;
    margin-top: 5px;
}

/* ESTILOS DEL MAIN */

main {
    padding: 200px;
    font-family: 'Fuzzy Bubbles', cursive;
    font-weight: bold;
    font-size: 24px;
    margin-top: -150px;
}

.social-icons{
    display: flex;
    justify-content: center;
    margin-top: -170px;
    list-style: none;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.social-icons li{
    margin-left: 5px;
    margin-right: 5px;
}

#Twitter {
    background-color: lightskyblue;
}

#LinkedIn {
    background-color: #23272D;
}

#Platzi {
    background-color: rgb(11, 86, 133);
}

#GitHub {
    background-color: rgb(12, 13, 14);
}
