body {
    background-color: rgb(245 65 96 / 0.15);
}

h1 {
    margin-bottom: 0;
    color: #F54160;
}

p {
    color: #F54160;
    font-size: 18px;
}

a {
    color: rgb(245 65 96 / 0.5);
    font-size: 18px;
}

img {
    width: 300px;
    box-shadow: 5px 5px 0 0 rgba(0, 0, 0, 0.3);
    transition: transform .2s ease;
}

img:hover {
    transform: scale(1.2) rotate(4deg);
}

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

.zero ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 300px;
}

.zero ul li {
    font-size: 19px;
    margin-right: 40px;
    margin-bottom: 2px;
    color: rgb(249 75 159 / 0.5);
    font-weight: bold;
    list-style-type: decimal;
    transition: transform .2s ease;
}

.zero ul li:hover {
    transform: scale(1.2) rotate(4deg);
    color: rgb(249 75 159);
}

.info {
    display: none;
    
    /* ALIGNMENT & SCALE */
    position: fixed;
    left: 50%;
    top: 50%;
    text-align: left;
    padding: 10px;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;

    /* STYLING */
    background-color: rgb(249 75 159 / 0.7); 
    border-radius: 8px;
}

.info p {
    color: #ffffff;
    margin: 0;
}