@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&amp;display=swap');

* {
    background-color: #151515;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

a {
    text-decoration: none;
}

h2, h3, p, a {
    background: transparent;
}

#clickanywhere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

img {
    margin-top: 20px;
    border-radius: 15px;
    height: 125px;
    transition: border-radius 0.3s ease;
}

img:hover {
    border-radius: 30px;
}

.box {
    background-color: #252525;
    height: auto;
    width: 600px;
    border-radius: 15px;
    border: 5px solid #202020;
}

.box h2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

hr {
    border: 2px solid #202020;
}

i {
    margin-top: 20px;
    margin-bottom: 20px;
    background: transparent;
    display: inline-block;
    font-size: 30px;
    width: 50px;
    transition: 0.2s;
    transition: color 0.3s ease;
}

i:hover {
    color: #606060;
}