@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Open Sans", sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(40, 180, 180);
    width: 100vw;
    height: 100vh;
}

.content {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 20px;
    width: 500px;
}

.heading {
    font-size: 3em;
    font-weight: 700;
}

.introduction, .description {
    font-size: 1.2em;
    margin-top: 20px;
}

.socialmedia {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.socialmedia a{
    text-decoration: none;
    color: rgb(40, 180, 180);
    font-size: 2.5em;
    margin: 0px 30px;
}

.footer {
    position: fixed;
    bottom: 3px;
    padding: 5px 0px;
    color: #ffffff;
    width: 100vw;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    .content {
        margin: 0px 20px;
        width: 100%;
    }
}