body {
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.main {
    width: 100vw;
    height: 100vh;
    background-image: url("cat.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    font-size: 1.2em;
}

h1 {
    margin: 0px;
    padding: 16px;
    font-size: 2em;
}

.menu {
    display: flex;
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #4e4e4e;
    padding-left: 10%;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    transition-property: transform;
    transition-duration: 0.25s;
}

li a:hover {
    transform: scale(1.2);
}

.bottom {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    background-color: #4e4e4e;
    width: 100vw;
}

.copy-container {
    display: grid;
    grid-template-rows: 1;
    grid-template-columns: 50%;
}

.copy {
    margin: 12px;
    margin-top: 4px;
    width: 256px;
}

.copy-web {
    text-align: center;
    grid-row: 1;
}

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

.media {
    width: 32px;
    margin: 8px;
}

.tooltipContainer {
    position: relative;
    display: inline-block;
}

.tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333333;
    color: white;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    width: 200px;
    bottom: 100%;
    left: 50%;
    margin-left: -100px;
    z-index: 1;
}

.tooltipContainer:hover .tooltip {
    visibility: visible;
}
