*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    padding: 0;
    margin: 0;
    overflow: hidden;

    font-family: 'Outfit', sans-serif;
}

.browser_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    width: 60vmin;
}

.browser_top_bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 0.5vmin;
    width: 100%;
    height: 5vmin;
    border-radius: 0 0 1vmin 1vmin;

    backdrop-filter: blur(1.25rem) saturate(100%);
    background-color: rgba(255, 255, 255, 0.05);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0.8vmin 3.2vmin 0 rgba(0, 0, 0, 0.3);
}

.browser_url_bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: not-allowed;

    padding-left: 1vmin;
    height: 4vmin;
    flex: 1;
    border-radius: 1vmin;

    background: rgba(0, 0, 0, 0.3);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

.browser_home_button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    margin-left: 0.5vmin;
    height: 4vmin;
    aspect-ratio: 1 / 1;
    border-radius: 1vmin;

    background: rgba(0, 0, 0, 0.3);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);

    transition: ease 0.1s;
}

.browser_home_button:hover {
    transform: scale(1.1);
}

.browser_home_button_icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80%;
    height: 80%;
    object-fit: cover;

    filter: brightness(0) invert(1);
}

.browser_web_content {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    width: 100%;
    height: 50vmin;
}

.browser_homepage_selector {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    width: 20%;
    aspect-ratio: 1 / 1;
    border-radius: 30%;

    background: rgba(0, 0, 0, 0.3);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);

    transition: ease 0.1s;
    will-change: transform;
}

.browser_homepage_selector:hover {
    transform: scale(1.2);
}

.browser_homepage_selector_animation {
    animation: browserHomeButtonAnimation 0.15s ease-in-out forwards;
}

@keyframes browserHomeButtonAnimation {
    0% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1.2);
    }
}

.browser_homepage_icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 80%;
    height: 80%;
    object-fit: cover;

    filter: brightness(0) invert(1);
}