:root {
    --elmc-blue: rgb(30, 97, 253);
    --elmc-white: rgb(231, 233, 255);
}
body {
    background-image: url("dogs.jpg");
    background-repeat: repeat;
    background-size: 30% auto;
    margin: 0;
    font-family: 'Noto Sans', sans-serif;
}
h1 {
    font-weight: 50;
    font-size: 70px;
}
h2 {
    font-weight: 50;
    font-size: 50px;
}
p {
    font-weight: 300;
    font-size: 20px
}
.navbar {
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}
.navcomponent {
    float: left;
    background-color: white;
    text-align: center;
}
#burger {
    transition-duration: 0.2s;
}
#burger:hover {
    background-color: var(--elmc-white);
}
#dropdown {
    display: none;
    width: 8%;
    height: 200px;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--elmc-white);
    padding: 0 1%;
}
#burger:hover ~ #dropdown, #dropdown:hover {
    display: block;
}
.button {
    height: 50px;
    padding-top: 20px;
    font-size: 20px;
    transition-duration: 0.2s;
    width: calc(40% / 3);
    color: black;
}
.button:hover {
    padding-top: 40px;
    background-color: var(--elmc-blue);
    color: white;
}
#current > .button {
    background-color: rgb(236, 236, 236);
}
#current > .button:hover {
    background-color: var(--elmc-blue);
}
.icon {
    height: 70px;
    width: 10%;
}
.blanker {
    width: 40%;
    height: 70px;
}
.floater {
    position: absolute;
    top: 150px;
    left: 5%;
    width: 40%;
    height: 400px;
    background-color: white;
    padding: 0 20px 0 20px;
}
.content {
    position: absolute;
    top: 100vh;
    width: calc(100% - 200px);
    height: 500px;
    background-image: linear-gradient(to bottom right, white, var(--elmc-white));
    padding: 100px 100px;
}
.visual {
    padding: 0;
    border: 1px solid none;
    border-radius: 20px;
    background-image: linear-gradient(to bottom right, rgb(217, 214, 233), var(--elmc-white));
    transition-duration: 0.2s;
}
.visual:hover {
    padding: 10px 10px;
}
.roundbutton {
    border-radius: 5px;
    width: calc(50% - 3px);
    height: 50px;
    font-size: 20px;
    font-family: 'Noto Sans', 'sans-serif';
}
#join {
    background-color: black;
    border: none;
    color: white;
    transition-duration: 0.2s;
}
#join:hover {
    background-color: var(--elmc-blue);
    box-shadow: 0 0 10px var(--elmc-blue);
}
#solutions {
    background-color: #ffffff00;
    border: 2px solid black;
    color: black;
    transition-duration: 0.2s;
}
#solutions:hover {
    box-shadow: 0 0 10px rgb(104, 104, 104);
}
