@font-face{
    src: url('light.woff2');
    font-family: light;
}
html{
    background-color: rgb(54, 54, 54);
    font-family: light;
    color: white;
}
.head{
    display: flex;
    font-size: 30px;
    color: white;
    justify-content: center;
}
.inner{
    padding-top: 60px;
    display: flex;
    justify-content: space-evenly;
}
.plex{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 35px;
    width: 25%;
}
.ombi{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 35px;
    width: 25%;
}
img{
    border-radius: 30px;
    box-shadow: 0 0 20px black;
    width: 50%;
}
@media (max-width: 800px){
    html{
        background-color: rgb(54, 54, 54);
        font-family: light;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .head{
        display: flex;
        font-size: 25px;
        color: white;
        align-self: center;
    }
    .inner{
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        align-self: center;
    }
    .plex{
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 35px;
        width: 100%;
    }
    .ombi{
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 35px;
        width: 100%;
    }
    img{
        border-radius: 10px;
        box-shadow: 0 0 20px black;
        width: 30%;
    }
    .desc{
        display: flex;
        width: 60%;
        align-self: center;
    }
}