* {
    padding: 0;
    margin: 0;
}

h1 {
    display: none;
}

.odellaPortafolio {
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    position: relative;
    background-color: #041E42;
}
.odellaPortafolio::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(./assets/svg/lineasFondo.svg) center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
}
.odellaPortafolio-content {
    position: relative;
    margin: 0 auto;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
    .odellaPortafolio-content {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }
}
@media screen and (max-width: 600px) {
    .odellaPortafolio-content {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }
}

.odellaPortafolio-content-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 85vw;
}
.odellaPortafolio-content-logo-img {
    width: 300px;
    height: auto;
    margin-bottom: 20px;
    border-bottom: 1px solid #fff;
    padding-bottom: 40px;
}
@media screen and (max-width: 600px) {
    .odellaPortafolio-content-logo-img {
        width: 50vw;
        margin-bottom: 4vw;
    }
}
.odellaPortafolio-content-logo-txt {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
}
@media screen and (min-width: 600px) and (max-width: 1100px) {
    .odellaPortafolio-content-logo-txt {
        font-size: 3vw;
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .odellaPortafolio-content-logo-txt {
        font-size: 4vw;
        width: auto;
    }
}
.odellaPortafolio-content-buttons {
    display: flex;
    width: 80vw;
    margin: 0 auto;
    justify-content: center;
    gap: 20px;
}
@media screen and (max-width: 600px) {
    .odellaPortafolio-content-buttons {
        flex-direction: column;
    }
}
.odellaPortafolio-content-buttons-item {
    width: 300px;
    text-decoration: none;
}
.odellaPortafolio-content-buttons-item {
    width: 100%;
    display: flex;
    align-items: center;
    font-family: "DM Sans", sans-serif;
    background-color: transparent;
    border: 2px solid #fff;
    padding: 15px 30px;
    color: #fff;
    font-size: 20px;
    border-radius: 20px;
    gap: 10px;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}
@media screen and (max-width: 600px) {
    .odellaPortafolio-content-buttons-item {
        width: 85%;
        padding: 3vw 5vw;
        font-size: 4vw;
    }
}
.odellaPortafolio-content-buttons-item:hover {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}
