body {
    margin: 0;
    padding: 0;
    background-color: lightblue;
    user-select: none;
}

.navbar {
    height: 75px;
    width: 100%;
    background-color: rgb(202, 235, 247);
}

.grid-item {
    height: 125px;
    width: 150px;
    transition: all 0.3s ease;
    -webkit-user-drag: none;
}

.rowed:hover {
    transform: translateY(-6px);
}

.gridbox {
    display: grid;
    grid-template-columns: 150px 150px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 75px;
    margin-right: 50px;
}

.rowed {
    scale: 1.7;
}

.g5 {
    rotate: 90deg;
    height: 250px;
    width: 150px;
    margin-left: 225px;
    transition: all 0.3s ease;
}

.g5:hover {
    transform: translateX(-8px);
}

.center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.left {
    margin-left: 60px;
}

.right {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
    margin-right: 25px;
}

.txt {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 25px;
    margin-top: 20px;
    color: black;
}

.rsvp {
    height: 45px;
    width: 150px;
    border: none;
    outline: none;
    background-color: rgb(49, 135, 163);
    border-radius: 20px;
    color: white;
    font-size: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0,0.6);
    transition: all 0.3s ease;
}

.faq {
    height: 45px;
    width: 100px;
    border: none;
    outline: none;
    background: white;
    border-radius: 20px;
    color: rgb(0, 0, 0);
    font-size: 25px;
    margin-right: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0,0.6);
    transition: all 0.3s ease;
}

.faq:hover, .rsvp:hover {
    transform: translateY(-6px);
}