@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* background-color: #2C3333; */
    background-color: #181818;
}

* {
    margin: 0px;
    border: 0px;
    padding: 0px;
    font-family: 'Poppins', sans-serif;
    color: #E7F6F2;
}

#main-content {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#main-content h1 {
    font-size: 3em;
}

#main-content h1 span {
    color: #38bdf8;
}

#main-content p {
    font-size: 1.2em;
    padding: 0px 5px;
    color: #38bdf8;
}

#link-container {
    margin-top: 15px;
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
    height: 5vh;
}

.card {
    
    text-decoration: none;
    height: 5vh;
    width: 5vh;
    border: 2px solid #38bdf8;
    background-color: #38bdf8;
    border-radius: 50%;
    box-shadow: 1px 1px 5px #141414;
}

.card:hover {
    position: relative;
}

.link-image {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.link-title {
    position: absolute;
    left: 0px;
    bottom: -5vh;
    filter: opacity(0);
    transition: 0.3s filter;
    text-align: center;
    box-shadow: 1px 1px 5px #141414;
    color: #E7F6F2;
    background-color: #38bdf8;
    padding: 5px;    
    border-radius: 10px;
    font-weight: bold;
}

.link-image:hover + .link-title {
    filter: opacity(1);
}

.link-image:active + .link-title {
    filter: opacity(0);
}

@media (orientation: portrait) {
    #main-content h1 {
        font-size: 2em;
    }

    #main-content p {
        font-size: 1em;
    }



}