@font-face {
    font-family: 'Zen Maru Gothic';
    src: url(asset/Font/ZenMaruGothic-Regular.ttf);
}

@font-face {
    font-family: 'Play Fair Display';
    src: url(asset/Font/PlayfairDisplay-VariableFont_wght.ttf);
}

body {
    padding: 0;
    margin: 0;
    background-image: url(asset/Background/AssetStartPorto.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.onboarding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    /* background: #ffffff; */
    color: #ececec;
    font-family: 'Zen Maru Gothic'
}

.slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

h1,
h2 {
    font-family: 'Play Fair Display';
    font-size: 2.5em;
    margin: 0;
    text-align: center;
}

p {
    text-align: center;
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
}

.grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.grid .button button {
    margin-top: 20px;
    padding: 5px 20px 10px 20px;
    color: rgb(255, 255, 255);
    background-color: transparent;
    transition: ease-out 0.3s;
    box-shadow: inset 0 0 0 0 #f3f3f3;
    position: relative;
    box-sizing: border-box;
    border-radius: 10px;
    border-style: double;
    border-color: #f3f3f3;
    font-size: 25px;
    font-family: 'Zen Maru Gothic';
}

.grid .button button:hover {
    background-color: #7ed3f7;
    box-shadow: inset 250px 0 0 0 #7ed3f7;
    border-color: #7ed3f7;
    color: #ffffff;
    cursor: pointer;
}