@font-face{
    font-family: "titre";
    src: url("font/LaBelleAurore.ttf");
}

@font-face{
    font-family: "reste";
    src: url("font/Fraunces_9pt-Light.ttf");
}

html, body {
    font-family: 'reste', sans-serif;
}

a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
    color: inherit;
}

.chip {
    display: inline-block;
    border-radius: 25px;
    margin: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    align-items: center;
    align-content: center;
}

.chip i {
  margin-right: 10px;
}


.btn-grad {
    margin: 10px;
    text-align: center;
    transition: 0.5s;
    background-size: 200% 200%;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 15pt;
    display: block;
    border: none;
    outline: none;
    opacity: 1;
}

.btn-grad:hover {
    background-position: left center;
    text-decoration: none;
    opacity: 0.8;
}

.large_frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    height: auto;
    border-radius: 20px;
}

.large_frame img {
    width: 50%;
    height: auto;
}

.large_frame input {
    border-radius: 15px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 10px;
    font-family: 'Delmon', sans-serif;
}

.large_frame textarea {
    border-radius: 15px;
    border: none;
    outline: none;
    padding: 10px;
    margin: 10px;
    resize: none;
    font-family: 'Delmon', sans-serif;
}

input:invalid {
  border: red solid 3px;
}

