* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    overflow: hidden;
}

.main__grab {
    position: relative;
}

.top__menu {
    position: absolute;
    top: 20px;
    left: 44px;
    z-index: 1;
}

.top__menu img {
    padding: 10px;
}

.main__body {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.main__item {
    position: relative;
    flex: 1;
    height: 100vh;
    text-decoration: none;
    color: white;
}

.main__img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.main__item--desc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    text-align: center;
    width: 55%;
}

.main__item--title {
    font-size: 28px;
    font-weight: 600;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    line-height: auto;
    margin-bottom: 20px;
}

.main__item--addr {
    font-size: 16px;
    font-weight: 500;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    line-height: auto;
}