body {
    display: flex;
    flex-direction: column;
    color: #2B1D1B;
    font-family: 'didot', sans-serif; 
    background-image: url('/assets/bg_withoutflower.png');
    background-size: cover;
    background-position: center;
}

header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#rotateCanvas {
    margin-top: 5rem;
}

p {
    margin: 3.75rem 0; 
    font-size: 1.875rem; 
}

a {
    width: 5rem; 
    height: 2rem; 
    margin: 2.5rem 0; 
    padding: 0.5rem; 
    font-size: 0.9375rem; 
    border-radius: 2rem;
    border: 1px solid #8a6e69;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

a:hover {
    background-color: #e9e1dc;
}

@media (max-width: 768px) {
    body{
        background-size: contain;
    }
    
}