@import url('https://fonts.googleapis.com/css2?family=Bonheur+Royale&family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bonheur Royale', cursive;
    text-decoration: none;
}

body {
    /* height: 100vh; */
    width: 100%;
    background: url(./assets/couple-6935366.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

:root {
    --primary: #4be1ec;
    --secondary: #cb5eee;
    --white: #fff;
    --gray: #9b9b9b;
}

.main {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    flex-direction: column;
    padding: 2rem 1rem;
}

.main h2 {
    color: #515235;
    letter-spacing: 10px;
    font-size: 50px;
    transform: rotate(-2deg);
    border-bottom: 2px dotted  #515235;
    border-radius: 1rem;
    padding: 0.5rem;
    margin-top: 2.5rem;
}

.container {
    display: grid;
    width: 90%;
    height: 75vh;
    place-content: center;
    /* padding: 3rem 4rem; */
    flex-wrap: wrap;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
}

.day {
    border: 2px solid white;
    overflow: hidden;
    display: flex;
    gap: 1rem;
    border-radius: 1rem;
    cursor: pointer;
    justify-content: space-around;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem;
    backdrop-filter: blur(30px);
}

.day:hover>.info .day-name {
    color: var(--primary);
}

.day:hover>.info .date {
    color: var(--white);
}

.icon {
    width: 30%;
}

.info {
    color: white;
    letter-spacing: 3px;
    text-align: justify;
}

.day-name {
    font-size: 1.5rem;
}

.date {
    font-size: 1.3rem;
}

lord-icon {
    width: 120px;
    height: 120px;
}

.copyright {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Protest';
    transform: rotate(-1deg);
    border-bottom: 2px dotted var(--white);
    border-radius: 1rem;
    padding: 0.4rem;
}

@media only screen and (max-width: 400px) {
    .container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: max-content;
        padding: 1rem 0;
    }

    .main h2 {
        margin-top: 0;
        margin-bottom: 1.3rem;
        font-size: 22px;
    }

    lord-icon {
        width: 100px;
        height: 100px;
    }
}