@font-face {
    font-family: 'Vevey';
    src: url('assets/fonts/Vevey-Positive.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Vevey;
}


body {
    background-color: #f4f4f4;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 2vw;
    padding-bottom: 2vw;
    background: rgb(238,174,202);
background: -moz-radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(220,177,209,1) 20%, rgba(219,177,209,1) 21%, rgba(213,178,211,1) 28%, rgba(196,180,217,1) 47%, rgba(148,187,233,1) 100%);
background: -webkit-radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(220,177,209,1) 20%, rgba(219,177,209,1) 21%, rgba(213,178,211,1) 28%, rgba(196,180,217,1) 47%, rgba(148,187,233,1) 100%);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(220,177,209,1) 20%, rgba(219,177,209,1) 21%, rgba(213,178,211,1) 28%, rgba(196,180,217,1) 47%, rgba(148,187,233,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeaeca",endColorstr="#94bbe9",GradientType=1);
}

.inf-main_f31b56f9432b4f03b3b5f4611be3fd96{
    background-color: transparent !important;
}

img, 
main,
.inf-main_f31b56f9432b4f03b3b5f4611be3fd96{
    width: 40vw;
}

.inf-main_f31b56f9432b4f03b3b5f4611be3fd96{
    margin: 0 !important;
    padding: 0 !important;
}


h1{
    font-size: 18px;
}


header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

main {
    margin: 20px;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}


@media (max-width: 768px) {
    .inf-main_f31b56f9432b4f03b3b5f4611be3fd96{
        width: 80vw;
    }

    img,
    main{
        width: 80vw;
    }

    a, p, h1{
        font-size: 5vw;
    }
}   