/* css for index.html */
body {
    background-color: lightgrey;
    font-size: large;
}

#container {
    display: flex;
    flex-direction: row;
    margin: auto;
    width: 75%;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: rgb(40, 99, 117);
    border-radius: 10px;
    background-image: linear-gradient(#0c3631, rgb(129, 243, 247));
}

#container>div {
    background-color: #f1f1f1;
    margin: 10px;
    padding: 20px;
    font-size: 30px;
    border-radius: 10px;
    width: 25%;
    box-shadow: 5px 5px 5px;

}

img {
    width: auto;
    height: 150px;
    border-radius: 50%;
    position: fixed;
    bottom: 0;
    right: 0;
}

a:hover {
    font-size: 120%;
    transform: skew(10deg, 4deg);
}

header {
    font-family: monospace;
}