.home {
    min-height: 100vh;
    background-image: url('/img/home_back.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.home-random-button {
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    color: white;
    letter-spacing: .3px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Rubik';
    transition: transform .15s ease, bacground .15s ease;
}

.home-interface {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Roboto';
    color: rgba(255, 255, 255, .9);
    background: rgba(5, 13, 24, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.interface-img {
    margin-bottom: 5px;
}

.intetface-name {
    margin-bottom: 12px;
    font-weight: 500;
}

.interface-description {
    text-align: left;
}

.home-random {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
}

.home-random-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .18);
}

.home-random-button:active {
    transform: translateY(0);
}