@font-face {
    font-family: Marcellus;
    src: url(fonts/Marcellus-Regular.woff2);
    font-weight: normal;
}

@font-face {
    font-family: Avenir;
    src: url(fonts/AvenirLTStd-Black.woff2);
    font-weight: bolder;
}
@font-face {
    font-family: Avenir;
    src: url(fonts/AvenirLTStd-Light.woff2);
    font-weight: light;
}
@font-face {
    font-family: Avenir;
    src: url(fonts/AvenirLTStd-Medium.woff2);
    font-weight: bold;
}

* {
    box-sizing: border-box;
    --primary: rgb(219 124 31);
    --secondary: rgb(211 65 29);
    --tertiary: rgb(2 73 91);
    --quaternary: rgb(0 12 15);
}

html {
    height: 100%;
    width: 100%;
    font-size: 16px;
    color: var(--quaternary);
}

body {
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: Avenir, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-image: url(Background.png);
    color: inherit;
}

.container {
    max-width: 600px;
    background-color: rgba(255,255,255,.7);
    border-radius: 10px;
    padding: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,.6);
    position: relative;
    overflow: hidden;
}

.container:after {
    content: '';
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: green;
    
}

.container img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
}

.container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 260px;
    background-image: url(Background.png);
    background-position: left 490px;
    opacity: 1;
    z-index: 0;
}

.logo {
    height: 186px;
    margin-bottom: 20px;
}


h1 {
    font-family: Avenir, serif;
    font-weight: bolder;
    font-size: min(7.8vw, 3rem);
    line-height: min(7.5vw, 2.8rem);
    margin-bottom: 30px;
    color: var(--primary);
}

ul.redes {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: min(3vw, 30px);
    margin: 0;
    margin-top: 30px;
}

.redes-item a {
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.redes-item a svg {
    zoom: 1.5;
    fill: var(--quaternary);
    transition: all 0.3s ease;
}

.redes-item a span {
    font-size: 12px;
    display: inline-block;
    padding: 2px 6px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.redes-item a:hover {
    color: var(--primary);
    text-decoration: none;
}

.redes-item a:hover span {
    background-color: var(--primary);
    color: white;
}

.redes-item a:hover svg {
    fill: var(--primary);
}

p {
    font-size: 1.25rem;
    font-size: min(4vw, 1.25rem);
    line-height: min(5vw, 1.5rem);
    margin-top: min(3vw, 1rem);
    margin-bottom: min(3vw, 1rem);
}
a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 600px) {
    .container {
        padding: 20px;
    }
    .container:before {
        height: 230px;
    }
    h1 {
        margin-top: 30px;
    }
    ul.redes {
        zoom: .9;
        gap: min(1vw, 30px);
}
}