

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to right, rgb(15, 23, 42), rgb(88, 28, 135), rgb(15, 23, 42));
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    color: beige;
    font-family: "SF Pro Display",
            "SF Pro Icons",
            "Helvetica Neue",
            "Helvetica",
            "Arial",
            sans-serif;
}




header {
    width: 100%;
    height: 50px;
    background-color: #1b1b32;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
}

nav>ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    padding-inline-start: 0;
    margin-block: 0;
    height: 100%;
}

nav>ul>li {
    color: #e2dfe2;
    margin: 0 0.2rem;
    padding: 0.9rem;
    display: block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

nav>ul>li:hover {
    background-color: #621e815e;
    color: #dac6da;
    cursor: pointer;

}

li>a {
    color: inherit;
    text-decoration: none;
}



#container-price {
    display: flex;
    width: 100%;
    height: 400px;
    padding: 0;
    margin: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.box {
    display: flex;
    border: 1px solid whitesmoke;
    width: 14rem;
    height: 17.5rem;
    margin: 10px;
    flex-direction: column;
    border-radius: 3px;
    z-index: 3;
    background-color: white;
    background-size: cover;
}

.imgdiv {
    display: flex;
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
}


.box .imgblock {
    width: 100%;
    margin: 0;
    padding: 0;
}

footer {
    padding-top: 100px;
    text-align: center;
    width: 100%;
    height: 10px;
}

h2 {
    padding-top: 100px;
    padding-bottom: 0;
    margin-bottom: auto;
    text-align: center;
    font-size: 2rem;
}

input {

    background-color: #0a0a23;
    border: 1px solid #870a92;
    color: #ffffff;
    border-radius: 8px;

}

#pform {
    padding: 10px;
    font-size: medium;
    font-family: "SF Pro Display",
        "SF Pro Icons",
        "Helvetica Neue", Arial, Helvetica, sans-serif;
    margin-top: -100px;
}

#macpaper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 10px;
}

#form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 200px;
        margin-top: 50px;
    }

#email {
    max-width: 275px;
    width: 100%;
    padding: 5px;
    
}

#video {
    display: flex;
    text-align: center;
    padding: auto;
    margin: auto;
}

#submit {
    max-width: 150px;
    width: 100%;
    height: 30px;
    margin: 15px 0;
    border: 0;
    background-color: #8d1078;
    font-family: "SF Pro Display",
            "SF Pro Icons",
            "Helvetica Neue",
            "Helvetica",
            "Arial",
            sans-serif;
    font-size: medium;
    font-weight: bold;
    color: azure;
}

#submit:hover {
    background-color: whitesmoke;
    transition: background-color 1s;
    color: #8d1078;
}

h3 {
    text-align: center;
    font-size: 2em;
}


.info {
    text-align: center;
    width: 600px;
    margin: 0;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin: auto;
    font-size: 1.5em;

}

.texto {
    display: flexbox;
    margin: 0;
}

#email {
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
}


@media (max-width: 600px) {
    header {
        flex-wrap: wrap;
    }
}