Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
Ya estoy inscrito ¿Todavía no tienes acceso? Nuestros Planes
0
respuestas

[Proyecto] Haga lo que hicimos

Esto es lo que he podido hacer. Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

//style.css
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin:0;
}

body{
    background-color: #000000;
    color: #F6F6F6;
    height: 100vh;
    box-sizing: border-box;
}


.titulo-destaque {
    color: #22D4FD; 
}

.presentacion{
    width: 615px;
    height: 482px;
    top: 289px;
    left: 345px;
    display: flex;
    align-items: center;
    margin: 10%;
    justify-content: space-between;
    gap: 40px;
}

.presentacion__contenido{
    width: 615px;
    height: 482px;
    top: 289px;
    left: 345px;
}

.presentacion__contenido__titulo{
    width: 593px;
    height: 168px;
    font-family: "Krona One", serif;
    font-weight: 400;    
    font-size: 36px;
    line-height: 56px;
    color: #F6F6F6;
}

.presentacion__contenido__texto{
    width: 593px;
    height: 216px;
    font-family: "Montserrat", serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #F6F6F6;
}

.boton_instagram{
    margin: 5px;
    background-color: #22D4FD;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    padding: 16px;
    border-radius: 12px;
    border: none;
    outline: 2px solid #00CFFF;
    position: relative;
    cursor: pointer;
    transition: 0.3;
}

.instagram{
    text-align: center;
    width: fixed(280px);
    height: fixed(79px);
    top: 403px;
    left: 5px;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
    color: #000000;
    border-color: #22D4FD;
}

.boton_github{
    margin: 5px;
    background-color: #22D4FD;
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    padding: 16px;
    border-radius: 12px;
    border: none;
    outline: 2px solid #00CFFF;
    position: relative;
    cursor: pointer;
    transition: 0.3;
}

.github{
    text-align: center;
    width: fixed(280px);
    height: fixed(79px);
    top: 403px;
    left: 5px;
    border-radius: 16px;
    padding: 16px;
    gap: 16px;
    color: #000000;
    border-color: #22D4FD;
}

.imagen_garcia{
    width: 488px;
    height: 550px;
    top: 235px;
    left: 1030px;
    border: 3px;
    border-color:#22D4FD;
}