
body {
    font-family: Arial, Helvetica, sans-serif;
}


ul {
    text-align: right;
}

li {
    display: inline;
    justify-self: right;
    padding: 7px;
}

a {
    text-decoration: none;
    color: rgb(46, 46, 46);
}

a:hover {
    text-decoration: underline;
}

a.circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: white;
    transition: background-color 0.1s ease;
}

a.circle:hover {
    background-color: lightgray;
    
}

img {
    width: 20px;
    height: auto;
    max-width: 100%;
}

/*Google Drawing*/

img.doodle {
    display: flex;
    align-items: center;
    justify-self: center;
    width:600px;
    height: auto;
    max-width: 100%;
    padding: 30px;
    margin-bottom: 20px;
}

/*Searchbar*/

.searchbar {
    display: flex;
    justify-content: start;
    align-items:center;
    padding-left: 14px;
    margin: 0 auto;
    width: 848px;
    height: 48px;
    border-radius: 40px;
    border: 1px solid lightgray;
    box-shadow: 2px 2px 10px lightgray;
}

input {
    padding: 14px;
    outline: none;
    border: none;
    background: transparent;
    flex: 1;
}

/*Links*/

.bubbles {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
}

.b1 {
    background-color: #f6f6f6;
    border-radius: 40%;
    padding: 10px;
    margin: 30px;
    transition: background-color 0.3s ease;
}

.b1:hover {
    background-color: #d4d4d4;
}

img.link{
    width: 100px;
    height: auto;
}

p {
    font-size: 30px;
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-style: normal;
    color: #31231e;
}

a#hover {
    text-decoration: none;
}