
@font-face {
    font-family: 'Zelda';
    src: url('zelda.otf');
}

body{
    background-color: rgb(230, 176, 215);
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    color: white;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

h1, .zelda_img {
    animation: fadeIn 2s ease-in-out;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container h1{
    font-family: 'Zelda';
    font-size: 3rem;
    text-align: center;
    text-shadow: rgb(230, 176, 215) 0px 0px 10px;
    margin-bottom: 8px;
    color: rgb(238, 226, 235);
}

.bg{
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    filter: blur(100px);

}

.zelda_img{
    border-radius: 16px;
    box-shadow: 0px 0px 10px 5px rgba(230, 176, 215, 0.3);
}

.buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; 
    flex-direction: row;
}

.options{
    padding: 10px 20px;
    font-size: 1.2rem;
    border: none;
    color: rgb(239, 223, 234);
    background-color: rgb(233, 120, 201);
    cursor: pointer;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.options:hover{
    background-color: rgba(230, 176, 215, 0.748);
}